@@ -16,57 +16,105 @@ <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
- < h1 > 📘 The Code Magazine</ h1 >
20
- < h2 > The Basic Language of the Web: HTML</ h2 >
21
- < img src ="laura-jones.jpg " alt ="Headshot of Laura Jones " width ="50 " height ="50 " />
22
- < p > Posted by < strong > Laura Jones</ strong > on Monday, June 21st 2027</ p >
23
-
24
- < img src ="post-img.jpg " alt ="HTML code on a screen " width ="500 " height ="200 ">
25
-
26
- < p >
27
- All modern websites and web applications are built using three < em > fundamental</ em >
28
- technologies: HTML, CSS and JavaScript. These are the languages of the web.
29
- </ p >
30
-
31
- < p >
32
- In this post, let's focus on HTML. We will
33
- learn what HTML is all about, and why you too should learn it.
34
- </ p >
35
-
36
- < h3 > What is HTML?</ h3 >
37
- < p >
38
- HTML stands for < strong > H</ strong > yper< strong > T</ strong > ext < strong > M</ strong > arkup < strong > L</ strong > anguage.
39
- It's a markup language that web developers use to structure and
40
- describe the content of a webpage (not a programming language).
41
- </ p >
42
- < p >
43
- HTML consists of elements that describe different types of
44
- content: paragraphs, links, headings, images, video, etc.
45
- Web browsers understand HTML and render HTML code as websites.
46
- </ p >
47
-
48
- < p > In HTML, each element is made up of 3 parts:</ p >
49
-
50
- < ol >
51
- < li > The opening tag</ li >
52
- < li > The closing tag</ li >
53
- < li > The actual element</ li >
54
- < li > You can learn more at the MDN Web Docs.</ li >
55
- </ ol >
56
-
57
- < h3 > Why should you learn HTML?</ h3 >
58
-
59
- < p > There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</ p >
60
-
61
- < ul >
62
- < li > To be able to use the fundamental web dev language</ li >
63
- < li > To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</ li >
64
- < li > To build web applications</ li >
65
- < li > To impress friends</ li >
66
- < li > To have fun 😃</ li >
67
- </ ul >
68
-
69
- < p > Hopefully you learned something new here. See you next time!</ p >
19
+ < header >
20
+ < h1 > 📘 The Code Magazine</ h1 >
21
+
22
+ < nav >
23
+ < a href ="blog.html "> Blog</ a >
24
+ < a href ="# "> Challanges</ a >
25
+ < a href ="# "> Flexbox</ a >
26
+ < a href ="# "> CSS Grid</ a >
27
+ </ nav >
28
+ </ header >
29
+
30
+ < article >
31
+ < header >
32
+ < h2 > The Basic Language of the Web: HTML</ h2 >
33
+ < img src ="img/laura-jones.jpg " alt ="Headshot of Laura Jones " width ="50 " height ="50 " />
34
+ < p > Posted by < strong > Laura Jones</ strong > on Monday, June 21st 2027</ p >
35
+
36
+ < img src ="img/post-img.jpg " alt ="HTML code on a screen " width ="500 " height ="200 ">
37
+
38
+ </ header >
39
+
40
+ < p >
41
+ All modern websites and web applications are built using three < em > fundamental</ em >
42
+ technologies: HTML, CSS and JavaScript. These are the languages of the web.
43
+ </ p >
44
+
45
+ < p >
46
+ In this post, let's focus on HTML. We will
47
+ learn what HTML is all about, and why you too should learn it.
48
+ </ p >
49
+
50
+ < h3 > What is HTML?</ h3 >
51
+ < p >
52
+ HTML stands for < strong > H</ strong > yper< strong > T</ strong > ext < strong > M</ strong > arkup
53
+ < strong > L</ strong > anguage.
54
+ It's a markup language that web developers use to structure and
55
+ describe the content of a webpage (not a programming language).
56
+ </ p >
57
+ < p >
58
+ HTML consists of elements that describe different types of
59
+ content: paragraphs, links, headings, images, video, etc.
60
+ Web browsers understand HTML and render HTML code as websites.
61
+ </ p >
62
+
63
+ < p > In HTML, each element is made up of 3 parts:</ p >
64
+
65
+ < ol >
66
+ < li > The opening tag</ li >
67
+ < li > The closing tag</ li >
68
+ < li > The actual element</ li >
69
+ </ ol >
70
+
71
+ < p > You can learn more at
72
+ < a href ="https://developer.mozilla.org/en-US/docs/Web/HTML " target ="_blank "> MDN Web Docs</ a >
73
+ </ p >
74
+
75
+ < h3 > Why should you learn HTML?</ h3 >
76
+
77
+ < p > There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</ p >
78
+
79
+ < ul >
80
+ < li > To be able to use the fundamental web dev language</ li >
81
+ < li > To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</ li >
82
+ < li > To build web applications</ li >
83
+ < li > To impress friends</ li >
84
+ < li > To have fun 😃</ li >
85
+ </ ul >
86
+
87
+ < p > Hopefully you learned something new here. See you next time!</ p >
88
+
89
+ </ article >
90
+
91
+ < aside >
92
+ < h4 > Related posts</ h4 >
93
+
94
+ < ul >
95
+ < li >
96
+ < img src ="img/related-1.jpg " alt ="Post one " width ="75 " height ="75 ">
97
+ < a href ="# "> How to Learn Web Development</ a >
98
+ < p > By Milton Diaz</ p >
99
+ </ li >
100
+ < li >
101
+ < img src ="img/related-2.jpg " alt ="Post two " width ="75 " height ="75 ">
102
+ < a href ="# "> The Unknown Power of CSS</ a >
103
+ < p > By Jim Dillom</ p >
104
+ </ li >
105
+ < li >
106
+ < img src ="img/related-3.jpg " alt ="Post three " width ="75 " height ="75 ">
107
+ < a href ="# "> Why JavaScript is awesome</ a >
108
+ < p > By Jonas Schmedtmann</ p >
109
+ </ li >
110
+
111
+ </ ul >
112
+
113
+ </ aside >
114
+
115
+ < footer >
116
+ Copyright © 2027 by the Code Magazine
117
+ </ footer >
70
118
71
119
</ body >
72
120
0 commit comments