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