diff --git a/01-Getting started/index.html b/01-Getting started/index.html new file mode 100644 index 000000000..62781b60e --- /dev/null +++ b/01-Getting started/index.html @@ -0,0 +1,12 @@ + + + + + + + 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; +}