From ac5980eb28901a882d255afff9de61bc20d97570 Mon Sep 17 00:00:00 2001 From: CSIVESIT Date: Sat, 4 Dec 2021 17:50:23 +0530 Subject: [PATCH 1/2] getting started --- 01-Getting started/index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 01-Getting started/index.html diff --git a/01-Getting started/index.html b/01-Getting started/index.html new file mode 100644 index 000000000..92f926417 --- /dev/null +++ b/01-Getting started/index.html @@ -0,0 +1,12 @@ + + + + + + + First web page + + + + + \ No newline at end of file From ed6695e3278b9467db3f71769749bd1e6f78c374 Mon Sep 17 00:00:00 2001 From: SinghSujitkumar <2017.sujitkumar.singh@ves.ac.in> Date: Sun, 2 Jan 2022 16:26:12 +0530 Subject: [PATCH 2/2] initial --- 01-Getting started/index.html | 2 +- starter/02-HTML-Fundamentals/index.html | 17 +++++++++++++++++ starter/03-CSS-Fundamentals/index.html | 10 +--------- starter/03-CSS-Fundamentals/style.css | 7 +++++++ 4 files changed, 26 insertions(+), 10 deletions(-) create mode 100644 starter/02-HTML-Fundamentals/index.html create mode 100644 starter/03-CSS-Fundamentals/style.css diff --git a/01-Getting started/index.html b/01-Getting started/index.html index 92f926417..62781b60e 100644 --- a/01-Getting started/index.html +++ b/01-Getting started/index.html @@ -7,6 +7,6 @@ First web page - +

Hello World

\ No newline at end of file diff --git a/starter/02-HTML-Fundamentals/index.html b/starter/02-HTML-Fundamentals/index.html new file mode 100644 index 000000000..ec28932bb --- /dev/null +++ b/starter/02-HTML-Fundamentals/index.html @@ -0,0 +1,17 @@ + + + + + Document + + +

The first web page

+

Second heading

+

third heading

+

fourth heading

+
fifth heading
+
sixth heading
+

📘 The Code Magazine +

+ + \ No newline at end of file diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html index df8a623a8..aa2ec637d 100644 --- a/starter/03-CSS-Fundamentals/index.html +++ b/starter/03-CSS-Fundamentals/index.html @@ -3,18 +3,10 @@ The Basic Language of the Web: HTML + - -

📘 The Code Magazine

diff --git a/starter/03-CSS-Fundamentals/style.css b/starter/03-CSS-Fundamentals/style.css new file mode 100644 index 000000000..cec9809cc --- /dev/null +++ b/starter/03-CSS-Fundamentals/style.css @@ -0,0 +1,7 @@ +h3 { + color: aqua; +} +body { + background-color: antiquewhite; + font-family: "Courier New", Courier, monospace; +}