Skip to content

Commit d321883

Browse files
committed
text types and lists
1 parent 0b83091 commit d321883

File tree

1 file changed

+35
-4
lines changed

1 file changed

+35
-4
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
<title>The Basic Language of the Web: HTML</title>
55
</head>
66

7+
<!-- <strong> for bold -->
8+
<!-- <emphasize> for italic-->
79
<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>
912
<!-- Here are the different text sizes in the basic html -->
1013
<!-- <h1>The Basic Language of the Web: HTML</h1> -->
1114
<h2>The Basic Language of the Web: HTML</h2>
@@ -25,15 +28,43 @@ <h2>The Basic Language of the Web: HTML</h2>
2528
</p>
2629
<h3>What is HTML?</h3>
2730
<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).
3135
</p>
3236

3337
<p>
3438
HTML consists of elements that describe different types of content:
3539
paragraphs, links, headings, images, video, etc. Web browsers understand
3640
HTML and render HTML code as websites.
3741
</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>
3869
</body>
3970
</html>

0 commit comments

Comments
 (0)