4
4
< title > The Basic Language of the Web: HTML</ title >
5
5
</ head >
6
6
7
+ <!-- <strong> for bold -->
8
+ <!-- <emphasize> for italic-->
7
9
< body >
8
- < h1 > The Code Magazine</ h1 >
10
+ < h1 > 📘 The Code Magazine</ h1 >
11
+ < p > Posted by < strong > Jones</ strong > on Monday, June 21st 2027</ p >
9
12
<!-- Here are the different text sizes in the basic html -->
10
13
<!-- <h1>The Basic Language of the Web: HTML</h1> -->
11
14
< h2 > The Basic Language of the Web: HTML</ h2 >
@@ -25,15 +28,43 @@ <h2>The Basic Language of the Web: HTML</h2>
25
28
</ p >
26
29
< h3 > What is HTML?</ h3 >
27
30
< p >
28
- HTML stands for HyperText Markup Language. It's a markup language that web
29
- developers use to structure and describe the content of a webpage (not a
30
- programming language).
31
+ HTML stands for < strong > H</ strong > yper < strong > T</ strong > ext
32
+ < strong > M</ strong > arkup < strong > L</ strong > anguage. It's a markup language
33
+ that web developers use to structure and describe the content of a webpage
34
+ (not a programming language).
31
35
</ p >
32
36
33
37
< p >
34
38
HTML consists of elements that describe different types of content:
35
39
paragraphs, links, headings, images, video, etc. Web browsers understand
36
40
HTML and render HTML code as websites.
37
41
</ p >
42
+
43
+ < p > In HTML, each element is made up of 3 parts:</ p >
44
+
45
+ < ol >
46
+ < li > The opening tag</ li >
47
+ < li > The closing tag</ li >
48
+ < li > The actual element</ li >
49
+ </ ol >
50
+
51
+ < h3 > Why should you learn HTML?</ h3 >
52
+ < p >
53
+ There are countless reasons for learning the fundamental language of the
54
+ web. Here are 5 of them:
55
+ </ p >
56
+
57
+ < ul >
58
+ < li > To be able to use the fundamental web dev language</ li >
59
+ < li >
60
+ To hand-craft beautiful websites instead of relying on tools like
61
+ Worpress or Wix
62
+ </ li >
63
+ < li > To build web applications</ li >
64
+ < li > To impress friends</ li >
65
+ < li > To have fun 😃</ li >
66
+ </ ul >
67
+
68
+ < p > Hopefully you learned something new here. See you next time!</ p >
38
69
</ body >
39
70
</ html >
0 commit comments