diff --git a/solutions/01_hello_html/hello.html b/solutions/01_hello_html/hello.html index d975ef8..6d4f646 100644 --- a/solutions/01_hello_html/hello.html +++ b/solutions/01_hello_html/hello.html @@ -1 +1,25 @@ -This is just an example! Hehe. \ No newline at end of file + + + + + + + Hello! + + +

Hello, World!

+

World!

+ + +

SAO

+ +

SAO

+ +
+ +
+
+

Text

+
+ + \ No newline at end of file diff --git a/solutions/09A_length/Index.html b/solutions/09A_length/Index.html new file mode 100644 index 0000000..655fb95 --- /dev/null +++ b/solutions/09A_length/Index.html @@ -0,0 +1,15 @@ + + + + + + Hello! + + +

Hello, World!

+

World!

+ + + + + \ No newline at end of file diff --git a/solutions/09A_length/length.js b/solutions/09A_length/length.js new file mode 100644 index 0000000..f8595c7 --- /dev/null +++ b/solutions/09A_length/length.js @@ -0,0 +1,3 @@ +var string = "HelloWorld!"; + +console.log(string.length); \ No newline at end of file diff --git a/solutions/ScavengerHunt/hello.css b/solutions/ScavengerHunt/hello.css new file mode 100644 index 0000000..e6168a4 --- /dev/null +++ b/solutions/ScavengerHunt/hello.css @@ -0,0 +1,8 @@ +.image { + height: 50px; + width: 50px; +} +#div1 { + height: 200px; + width: 200px; +} \ No newline at end of file diff --git a/solutions/ScavengerHunt/hello.js b/solutions/ScavengerHunt/hello.js new file mode 100644 index 0000000..ab13a48 --- /dev/null +++ b/solutions/ScavengerHunt/hello.js @@ -0,0 +1,4 @@ +console.log("Hello World!"); + +var yourName = prompt("What is your name?"); +console.log(yourName); \ No newline at end of file