From aba4b11e9bfdc14f35a38d498d0fda50ddc2df98 Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 09:38:02 -0400 Subject: [PATCH 01/14] Add html file. --- adam.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 adam.html diff --git a/adam.html b/adam.html new file mode 100644 index 0000000..e69de29 From 9c1fa1062c3b86a9e77147f3fd1d9f8e2dfe1d1a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Sat, 15 Sep 2018 10:19:14 -0400 Subject: [PATCH 02/14] Created HTML file with my name in it --- index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..034e4f6 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + Dylan + + +

Dylan

+ + \ No newline at end of file From 7ca937349c5f7c17ad201601a44b76cb6e54d300 Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 10:19:29 -0400 Subject: [PATCH 03/14] Add starter html code. --- adam.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/adam.html b/adam.html index e69de29..8e13c0f 100644 --- a/adam.html +++ b/adam.html @@ -0,0 +1,13 @@ + + + + + +A Simple HTML Document + + + +

This is a very simple HTML document made by Adam.

+

It only has two paragraphs

+ + \ No newline at end of file From 55ca77f300a69c9e444edeb3adc147263e1b1701 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Sat, 15 Sep 2018 10:31:12 -0400 Subject: [PATCH 04/14] changed filename to dylan --- index.html => dylan.html.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename index.html => dylan.html.html (100%) diff --git a/index.html b/dylan.html.html similarity index 100% rename from index.html rename to dylan.html.html From b441bdf1b480c12f70d9e9c76671aa628358dc96 Mon Sep 17 00:00:00 2001 From: MarkCBall Date: Sat, 15 Sep 2018 10:33:54 -0400 Subject: [PATCH 05/14] add mark.html --- Mark.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Mark.html diff --git a/Mark.html b/Mark.html new file mode 100644 index 0000000..d1f4d73 --- /dev/null +++ b/Mark.html @@ -0,0 +1,30 @@ + + + + + + My bio page + + + + + + + + +Picture of Mark +

Mark Camball, P.Eng.

+ + +

Mark is a ________

+ +
+

Mark likes ___

+ +
+
+

His social media accounts are: Linkedin

+
+ + + From 204da4c72e9996d71376271ed1dbdbb50f573207 Mon Sep 17 00:00:00 2001 From: MarkCBall Date: Sat, 15 Sep 2018 10:45:04 -0400 Subject: [PATCH 06/14] irrelevant change to test a push --- Mark.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mark.html b/Mark.html index d1f4d73..2a8e574 100644 --- a/Mark.html +++ b/Mark.html @@ -3,7 +3,7 @@ - My bio page + My bio pagee From 74fb3988127ac8c4e0c3b48653df8df65275415f Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 11:04:21 -0400 Subject: [PATCH 07/14] Create CSS file. --- adam.html => Adam/adam.html | 0 Adam/style.css | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) rename adam.html => Adam/adam.html (100%) create mode 100644 Adam/style.css diff --git a/adam.html b/Adam/adam.html similarity index 100% rename from adam.html rename to Adam/adam.html diff --git a/Adam/style.css b/Adam/style.css new file mode 100644 index 0000000..dc94f7f --- /dev/null +++ b/Adam/style.css @@ -0,0 +1,36 @@ +ul { + background-color: blue; +} + +/* ID tags can only be used on one element. */ +#list1 { + background-color: pink; + font-size: 40px; +} + +/* Classes can be used on moultiple elements. */ +ul.pinklist { + background-color: pink; + font-size: 40px; +} + + +/* Any element contained within a ul element with class ul. */ +ul .pinklist { + background-color: pink; + font-size: 40px; + } + + /* Define multiple elemnts with the same styles. */ +p, h6, h7 { + background-color: pink; + font-size: 40px; + } + + /* Every p element imediatly following a div element. */ +div + p { + background-color: pink; + font-size: 40px; + } + + From 7b79434f05ca43b7bde4ed16c280a704b912e4f0 Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 11:06:55 -0400 Subject: [PATCH 08/14] Update html file. --- Adam/adam.html | 1 + 1 file changed, 1 insertion(+) diff --git a/Adam/adam.html b/Adam/adam.html index 8e13c0f..6ac8db6 100644 --- a/Adam/adam.html +++ b/Adam/adam.html @@ -5,6 +5,7 @@ A Simple HTML Document +

This is a very simple HTML document made by Adam.

From de8198ccc0eb1f4ce3500c0e5079a12280a37728 Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 11:41:15 -0400 Subject: [PATCH 09/14] Restructure project. Fix stylesheet link. --- Adam/adam.html | 2 +- Adam/{ => styles}/style.css | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Adam/{ => styles}/style.css (100%) diff --git a/Adam/adam.html b/Adam/adam.html index 6ac8db6..acb9691 100644 --- a/Adam/adam.html +++ b/Adam/adam.html @@ -5,7 +5,7 @@ A Simple HTML Document - +

This is a very simple HTML document made by Adam.

diff --git a/Adam/style.css b/Adam/styles/style.css similarity index 100% rename from Adam/style.css rename to Adam/styles/style.css From 1c1e25419c38b4f7cd4179c06e899b37835955d3 Mon Sep 17 00:00:00 2001 From: priom Date: Sat, 15 Sep 2018 11:44:28 -0400 Subject: [PATCH 10/14] new paragraph added --- index.html | 13 ++++++++++--- styles/style.css | 11 +++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 styles/style.css diff --git a/index.html b/index.html index 175a70b..081e0a7 100644 --- a/index.html +++ b/index.html @@ -2,11 +2,18 @@ GBC Blockchain + -

INTRO TO BLOCKCHAIN COURSE

-

Welcome Everyone

+

INTRO TO BLOCKCHAIN COURSE

+

Hello

-

"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."

+

Welcome Everyone

+ +

"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."

+ +

dhfksdjahfdsahfjkldshfjdshfdshfsdhfjksdhfdhsk

+ +

Priom Chowdhury

\ No newline at end of file diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..a37b07e --- /dev/null +++ b/styles/style.css @@ -0,0 +1,11 @@ +.header { + color: red; +} + +#awesome-header { + font-size: 40px; +} + +#priom { + color: purple; +} \ No newline at end of file From ae2fe70b9bf36217e0e81e121d92375e194bd93f Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 11:45:55 -0400 Subject: [PATCH 11/14] Add more folders. Rename html file. --- Adam/{adam.html => index.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Adam/{adam.html => index.html} (100%) diff --git a/Adam/adam.html b/Adam/index.html similarity index 100% rename from Adam/adam.html rename to Adam/index.html From 40c8cb6ad63ae27fc38a0efb6d76263a540e13ba Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 11:50:53 -0400 Subject: [PATCH 12/14] Add new folders and empty img and js files. --- Adam/assets/img.png | 0 Adam/scripts/main.js | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Adam/assets/img.png create mode 100644 Adam/scripts/main.js diff --git a/Adam/assets/img.png b/Adam/assets/img.png new file mode 100644 index 0000000..e69de29 diff --git a/Adam/scripts/main.js b/Adam/scripts/main.js new file mode 100644 index 0000000..e69de29 From 5c39bbee7a000b9a7541651b2837397d97edfeb3 Mon Sep 17 00:00:00 2001 From: Adam-Koza Date: Sat, 15 Sep 2018 12:03:12 -0400 Subject: [PATCH 13/14] Use ID tag. --- Adam/index.html | 2 +- Adam/styles/style.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Adam/index.html b/Adam/index.html index acb9691..60e1af4 100644 --- a/Adam/index.html +++ b/Adam/index.html @@ -8,7 +8,7 @@ -

This is a very simple HTML document made by Adam.

+

This is a very simple HTML document made by Adam.

It only has two paragraphs

\ No newline at end of file diff --git a/Adam/styles/style.css b/Adam/styles/style.css index dc94f7f..bdf434a 100644 --- a/Adam/styles/style.css +++ b/Adam/styles/style.css @@ -3,8 +3,8 @@ ul { } /* ID tags can only be used on one element. */ -#list1 { - background-color: pink; +#blue { + background-color: blue; font-size: 40px; } From 8a7b29fc0aa88a39fdc398f21b8f2de54215d566 Mon Sep 17 00:00:00 2001 From: "Wayne.Xu" Date: Sat, 15 Sep 2018 09:28:29 -0700 Subject: [PATCH 14/14] wayne's page added --- Wayne.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Wayne.html diff --git a/Wayne.html b/Wayne.html new file mode 100644 index 0000000..03b97e0 --- /dev/null +++ b/Wayne.html @@ -0,0 +1,14 @@ + + + + + html made by Wayne + + + + +

Hello!

+

I am Wayne. I am learning the blockchain development.git

+ + + \ No newline at end of file