File tree Expand file tree Collapse file tree 4 files changed +26
-10
lines changed
Expand file tree Collapse file tree 4 files changed +26
-10
lines changed Original file line number Diff line number Diff line change 77 < title > First web page</ title >
88</ head >
99< body >
10-
10+ < h1 > Hello World </ h1 >
1111</ body >
1212</ html >
Original file line number Diff line number Diff line change 1+
2+ <!DOCTYPE html>
3+ < html lang ="en ">
4+ < head >
5+ < title > Document</ title >
6+ </ head >
7+ < body >
8+ < h1 > The first web page</ h1 >
9+ < h2 > Second heading</ h2 >
10+ < h3 > third heading</ h3 >
11+ < h4 > fourth heading</ h4 >
12+ < h5 > fifth heading</ h5 >
13+ < h6 > sixth heading</ h6 >
14+ < h1 > 📘 The Code Magazine
15+ </ h1 >
16+ </ body >
17+ </ html >
Original file line number Diff line number Diff line change 33 < head >
44 < meta charset ="UTF-8 " />
55 < title > The Basic Language of the Web: HTML</ title >
6+ < link rel ="stylesheet " href ="./style.css " />
67 </ head >
78
89 < body >
9- <!--
10- <h1>The Basic Language of the Web: HTML</h1>
11- <h2>The Basic Language of the Web: HTML</h2>
12- <h3>The Basic Language of the Web: HTML</h3>
13- <h4>The Basic Language of the Web: HTML</h4>
14- <h5>The Basic Language of the Web: HTML</h5>
15- <h6>The Basic Language of the Web: HTML</h6>
16- -->
17-
1810 < header >
1911 < h1 > 📘 The Code Magazine</ h1 >
2012
Original file line number Diff line number Diff line change 1+ h3 {
2+ color : aqua;
3+ }
4+ body {
5+ background-color : antiquewhite;
6+ font-family : "Courier New" , Courier, monospace;
7+ }
You can’t perform that action at this time.
0 commit comments