From 179488fbdc670f4d9f567de5e93f49c1ce77c7f5 Mon Sep 17 00:00:00 2001 From: finthehuman Date: Wed, 7 Oct 2015 21:50:25 +0000 Subject: [PATCH 1/2] ScriptEd Work --- solutions/01_hello_html/hello.html | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) 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 From 1d723d2e28835c62d4e546876e7b0f365d9b0555 Mon Sep 17 00:00:00 2001 From: finthehuman Date: Wed, 7 Oct 2015 21:53:50 +0000 Subject: [PATCH 2/2] ScriptEd Work --- solutions/09A_length/Index.html | 15 +++++++++++++++ solutions/09A_length/length.js | 3 +++ solutions/ScavengerHunt/hello.css | 8 ++++++++ solutions/ScavengerHunt/hello.js | 4 ++++ 4 files changed, 30 insertions(+) create mode 100644 solutions/09A_length/Index.html create mode 100644 solutions/09A_length/length.js create mode 100644 solutions/ScavengerHunt/hello.css create mode 100644 solutions/ScavengerHunt/hello.js 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