From 47d9b24ca8d26be4294b153fe852370fcd00b208 Mon Sep 17 00:00:00 2001 From: George Raymond Date: Wed, 7 Oct 2015 21:50:32 +0000 Subject: [PATCH 1/2] something --- solutions/0.5 first web/index.html | 10 ++++++++++ solutions/0.5 first web/page1.html | 10 ++++++++++ solutions/0.5 first web/page2.html | 10 ++++++++++ solutions/0.5 first web/page3.html | 10 ++++++++++ solutions/0.5 first web/style.css | 3 +++ solutions/09a_length/length.html | 10 ++++++++++ solutions/09a_length/length.js | 5 +++++ solutions/mysite/index.html | 14 ++++++++++++++ solutions/mysite/style.css | 3 +++ 9 files changed, 75 insertions(+) create mode 100644 solutions/0.5 first web/index.html create mode 100644 solutions/0.5 first web/page1.html create mode 100644 solutions/0.5 first web/page2.html create mode 100644 solutions/0.5 first web/page3.html create mode 100644 solutions/0.5 first web/style.css create mode 100644 solutions/09a_length/length.html create mode 100644 solutions/09a_length/length.js create mode 100644 solutions/mysite/index.html create mode 100644 solutions/mysite/style.css diff --git a/solutions/0.5 first web/index.html b/solutions/0.5 first web/index.html new file mode 100644 index 0000000..a6d89d8 --- /dev/null +++ b/solutions/0.5 first web/index.html @@ -0,0 +1,10 @@ + + + + index + + + +

index

+ + \ No newline at end of file diff --git a/solutions/0.5 first web/page1.html b/solutions/0.5 first web/page1.html new file mode 100644 index 0000000..dfefc52 --- /dev/null +++ b/solutions/0.5 first web/page1.html @@ -0,0 +1,10 @@ + + + + page1 + + + +

page 1

+ + \ No newline at end of file diff --git a/solutions/0.5 first web/page2.html b/solutions/0.5 first web/page2.html new file mode 100644 index 0000000..3da316a --- /dev/null +++ b/solutions/0.5 first web/page2.html @@ -0,0 +1,10 @@ + + + + page2 + + + +

page 2

+ + \ No newline at end of file diff --git a/solutions/0.5 first web/page3.html b/solutions/0.5 first web/page3.html new file mode 100644 index 0000000..1cafea0 --- /dev/null +++ b/solutions/0.5 first web/page3.html @@ -0,0 +1,10 @@ + + + + page 3 + + + +

page 3

+ + \ No newline at end of file diff --git a/solutions/0.5 first web/style.css b/solutions/0.5 first web/style.css new file mode 100644 index 0000000..5b576d8 --- /dev/null +++ b/solutions/0.5 first web/style.css @@ -0,0 +1,3 @@ +p { + text-align:center; +} \ No newline at end of file diff --git a/solutions/09a_length/length.html b/solutions/09a_length/length.html new file mode 100644 index 0000000..fdf7278 --- /dev/null +++ b/solutions/09a_length/length.html @@ -0,0 +1,10 @@ + + + + + + + + + + \ 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..039b0f2 --- /dev/null +++ b/solutions/09a_length/length.js @@ -0,0 +1,5 @@ + + +var string = "This is a string"; + +console.log(string.length); \ No newline at end of file diff --git a/solutions/mysite/index.html b/solutions/mysite/index.html new file mode 100644 index 0000000..47a3add --- /dev/null +++ b/solutions/mysite/index.html @@ -0,0 +1,14 @@ + + + + Mysite + + + + +

Blah

+ w3 + Blah + Blah + + \ No newline at end of file diff --git a/solutions/mysite/style.css b/solutions/mysite/style.css new file mode 100644 index 0000000..95ed254 --- /dev/null +++ b/solutions/mysite/style.css @@ -0,0 +1,3 @@ +p{ + color:red; +} \ No newline at end of file From 03ad5c7f687f311dec80b1a09a853e81f9954572 Mon Sep 17 00:00:00 2001 From: George Raymond Date: Wed, 7 Oct 2015 22:04:27 +0000 Subject: [PATCH 2/2] add --- solutions/javascript/myname.js | 1 + solutions/name/helloname.js | 0 2 files changed, 1 insertion(+) create mode 100644 solutions/javascript/myname.js create mode 100644 solutions/name/helloname.js diff --git a/solutions/javascript/myname.js b/solutions/javascript/myname.js new file mode 100644 index 0000000..ae9e3a9 --- /dev/null +++ b/solutions/javascript/myname.js @@ -0,0 +1 @@ +console.log("Hello, World!"); \ No newline at end of file diff --git a/solutions/name/helloname.js b/solutions/name/helloname.js new file mode 100644 index 0000000..e69de29