diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..600d2d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/function/function.html b/function/function.html new file mode 100644 index 0000000..1aaf488 --- /dev/null +++ b/function/function.html @@ -0,0 +1,21 @@ + + +
+The sum of 10 and 10 is:
+ + + diff --git a/function/function.jss b/function/function.jss new file mode 100644 index 0000000..dd36da7 --- /dev/null +++ b/function/function.jss @@ -0,0 +1,4 @@ +function addNumbers(num1, num2) { + return num1 + num2; + } + \ No newline at end of file diff --git a/index.css b/index.css index 52aa2ed..d5e1dd7 100644 --- a/index.css +++ b/index.css @@ -1,6 +1,11 @@ body{ - background-image: url("285674.jpg"); + background-image: url("./the_avengers.jpg"); width: 100vw; height: 100vh; } -s \ No newline at end of file +.center { + margin: auto; + width: 50%; + border: 3px solid green; + padding: 10px; + } \ No newline at end of file diff --git a/index.html b/index.html index ca66786..5802267 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,24 @@