@@ -16,143 +16,151 @@ <h5>The Basic Language of the Web: HTML</h5>
16
16
<h6>The Basic Language of the Web: HTML</h6>
17
17
-->
18
18
19
- < header class ="main-header ">
20
- < h1 > 📘 The Code Magazine</ h1 >
19
+ < div class ="container ">
20
+ < header class ="main-header ">
21
+ < h1 > 📘 The Code Magazine</ h1 >
22
+
23
+ < nav >
24
+ < a href ="blog.html "> Blog</ a >
25
+ < a href ="# "> Challenges</ a >
26
+ < a href ="# "> Flexbox</ a >
27
+ < a href ="# "> CSS Grid</ a >
28
+ </ nav >
29
+
30
+ <!--Test paragraphs
31
+ <p>Test paragraphs</p> -->
32
+ </ header >
21
33
22
- < nav >
23
- < a href ="blog.html "> Blog</ a >
24
- < a href ="# "> Challenges</ a >
25
- < a href ="# "> Flexbox</ a >
26
- < a href ="# "> CSS Grid</ a >
27
- </ nav >
34
+ < article >
35
+ < header class ="post-header ">
36
+ < h2 > The Basic Language of the Web: HTML</ h2 >
28
37
29
- <!--Test paragraphs
30
- <p>Test paragraphs</p> -->
31
- </ header >
38
+ < img
39
+ src ="img/laura-jones.jpg "
40
+ alt ="Headshot of Laura Jones "
41
+ height ="50 "
42
+ width ="50 "
43
+ />
32
44
33
- < article >
34
- < header >
35
- < h2 > The Basic Language of the Web: HTML </ h2 >
45
+ < p id =" author " >
46
+ Posted by < strong > Laura Jones </ strong > on Monday, June 21st 2027
47
+ </ p >
36
48
37
- < img
38
- src ="img/laura-jones.jpg "
39
- alt ="Headshot of Laura Jones "
40
- height ="50 "
41
- width ="50 "
42
- />
49
+ < img
50
+ src ="img/post-img.jpg "
51
+ alt ="HTML code on a screen "
52
+ width ="500 "
53
+ height ="200 "
54
+ class ="post-img "
55
+ />
56
+ </ header >
43
57
44
- < p id ="author ">
45
- Posted by < strong > Laura Jones</ strong > on Monday, June 21st 2027
58
+ < p >
59
+ All modern websites and web applications are built using three
60
+ < em > fundamental</ em >
61
+ technologies: HTML, CSS and JavaScript. These are the languages of the
62
+ web.
46
63
</ p >
47
64
48
- < img
49
- src ="img/post-img.jpg "
50
- alt ="HTML code on a screen "
51
- width ="500 "
52
- height ="200 "
53
- />
54
- </ header >
65
+ < p >
66
+ In this post, let's focus on HTML. We will learn what HTML is all
67
+ about, and why you too should learn it.
68
+ </ p >
55
69
56
- < p >
57
- All modern websites and web applications are built using three
58
- < em > fundamental</ em >
59
- technologies: HTML, CSS and JavaScript. These are the languages of the
60
- web.
61
- </ p >
62
-
63
- < p >
64
- In this post, let's focus on HTML. We will learn what HTML is all about,
65
- and why you too should learn it.
66
- </ p >
67
-
68
- < h3 > What is HTML?</ h3 >
69
- < p >
70
- HTML stands for < strong > H</ strong > yper< strong > T</ strong > ext
71
- < strong > M</ strong > arkup < strong > L</ strong > anguage. It's a markup
72
- language that web developers use to structure and describe the content
73
- of a webpage (not a programming language).
74
- </ p >
75
- < p >
76
- HTML consists of elements that describe different types of content:
77
- paragraphs, links, headings, images, video, etc. Web browsers understand
78
- HTML and render HTML code as websites.
79
- </ p >
80
- < p > In HTML, each element is made up of 3 parts:</ p >
81
-
82
- < ol >
83
- < li class ="first-li "> The opening tag</ li >
84
- < li > The closing tag</ li >
85
- < li > The actual element</ li >
86
- </ ol >
87
-
88
- < p >
89
- You can learn more at
90
- < a
91
- href ="https://developer.mozilla.org/en-US/docs/Web/HTML "
92
- target ="_blank "
93
- > MDN Web Docs</ a
94
- > .
95
- </ p >
96
-
97
- < h3 > Why should you learn HTML?</ h3 >
98
-
99
- < p >
100
- There are countless reasons for learning the fundamental language of the
101
- web. Here are 5 of them:
102
- </ p >
103
-
104
- < ul >
105
- < li class ="first-li ">
106
- To be able to use the fundamental web dev language
107
- </ li >
108
- < li >
109
- To hand-craft beautiful websites instead of relying on tools like
110
- Worpress or Wix
111
- </ li >
112
- < li > To build web applications</ li >
113
- < li > To impress friends</ li >
114
- < li > To have fun 😃</ li >
115
- </ ul >
116
-
117
- < p > Hopefully you learned something new here. See you next time!</ p >
118
- </ article >
119
-
120
- < aside >
121
- < h4 > Related posts</ h4 >
122
-
123
- < ul class ="related ">
124
- < li >
125
- < img
126
- src ="img/related-1.jpg "
127
- alt ="Person programming "
128
- width ="75 "
129
- width ="75 "
130
- />
131
- < a href ="# "> How to Learn Web Development</ a >
132
- < p class ="related-author "> By Jonas Schmedtmann</ p >
133
- </ li >
134
- < li >
135
- < img src ="img/related-2.jpg " alt ="Lightning " width ="75 " heigth ="75 " />
136
- < a href ="# "> The Unknown Powers of CSS</ a >
137
- < p class ="related-author "> By Jim Dillon</ p >
138
- </ li >
139
- < li >
140
- < img
141
- src ="img/related-3.jpg "
142
- alt ="JavaScript code on a screen "
143
- width ="75 "
144
- height ="75 "
145
- />
146
- < a href ="# "> Why JavaScript is Awesome</ a >
147
- < p class ="related-author "> By Matilda</ p >
148
- </ li >
149
- </ ul >
150
- </ aside >
151
-
152
- < footer >
153
- < p id ="copyright " class ="copyright text ">
154
- Copyright © 2027 by The Code Magazine.
155
- </ p >
156
- </ footer >
70
+ < h3 > What is HTML?</ h3 >
71
+ < p >
72
+ HTML stands for < strong > H</ strong > yper< strong > T</ strong > ext
73
+ < strong > M</ strong > arkup < strong > L</ strong > anguage. It's a markup
74
+ language that web developers use to structure and describe the content
75
+ of a webpage (not a programming language).
76
+ </ p >
77
+ < p >
78
+ HTML consists of elements that describe different types of content:
79
+ paragraphs, links, headings, images, video, etc. Web browsers
80
+ understand HTML and render HTML code as websites.
81
+ </ p >
82
+ < p > In HTML, each element is made up of 3 parts:</ p >
83
+
84
+ < ol >
85
+ < li class ="first-li "> The opening tag</ li >
86
+ < li > The closing tag</ li >
87
+ < li > The actual element</ li >
88
+ </ ol >
89
+
90
+ < p >
91
+ You can learn more at
92
+ < a
93
+ href ="https://developer.mozilla.org/en-US/docs/Web/HTML "
94
+ target ="_blank "
95
+ > MDN Web Docs</ a
96
+ > .
97
+ </ p >
98
+
99
+ < h3 > Why should you learn HTML?</ h3 >
100
+
101
+ < p >
102
+ There are countless reasons for learning the fundamental language of
103
+ the web. Here are 5 of them:
104
+ </ p >
105
+
106
+ < ul >
107
+ < li class ="first-li ">
108
+ To be able to use the fundamental web dev language
109
+ </ li >
110
+ < li >
111
+ To hand-craft beautiful websites instead of relying on tools like
112
+ Worpress or Wix
113
+ </ li >
114
+ < li > To build web applications</ li >
115
+ < li > To impress friends</ li >
116
+ < li > To have fun 😃</ li >
117
+ </ ul >
118
+
119
+ < p > Hopefully you learned something new here. See you next time!</ p >
120
+ </ article >
121
+
122
+ < aside >
123
+ < h4 > Related posts</ h4 >
124
+
125
+ < ul class ="related ">
126
+ < li >
127
+ < img
128
+ src ="img/related-1.jpg "
129
+ alt ="Person programming "
130
+ width ="75 "
131
+ width ="75 "
132
+ />
133
+ < a href ="# "> How to Learn Web Development</ a >
134
+ < p class ="related-author "> By Jonas Schmedtmann</ p >
135
+ </ li >
136
+ < li >
137
+ < img
138
+ src ="img/related-2.jpg "
139
+ alt ="Lightning "
140
+ width ="75 "
141
+ heigth ="75 "
142
+ />
143
+ < a href ="# "> The Unknown Powers of CSS</ a >
144
+ < p class ="related-author "> By Jim Dillon</ p >
145
+ </ li >
146
+ < li >
147
+ < img
148
+ src ="img/related-3.jpg "
149
+ alt ="JavaScript code on a screen "
150
+ width ="75 "
151
+ height ="75 "
152
+ />
153
+ < a href ="# "> Why JavaScript is Awesome</ a >
154
+ < p class ="related-author "> By Matilda</ p >
155
+ </ li >
156
+ </ ul >
157
+ </ aside >
158
+
159
+ < footer >
160
+ < p id ="copyright " class ="copyright text ">
161
+ Copyright © 2027 by The Code Magazine.
162
+ </ p >
163
+ </ footer >
164
+ </ div >
157
165
</ body >
158
166
</ html >
0 commit comments