Skip to content

Commit 45c8628

Browse files
committed
Completed More Text Elements: Lists
1 parent 00de02c commit 45c8628

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

myWork/02-HTML-Fundamentals/index.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,66 @@
66

77
<body>
88
<h1>📘 The Code Magazine</h1>
9+
910
<h2>The Basic Language of the Web: HTML</h2>
11+
1012
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
13+
1114
<p>
1215
All modern websites and web applications are built using three
1316
<em>fundamental</em>
1417
technologies: HTML, CSS and JavaScript. These are the languages of the
1518
web.
1619
</p>
20+
1721
<p>
1822
In this post, let's focus on HTML. We will learn what HTML is all about,
1923
and why you too should learn it.
2024
</p>
25+
2126
<h3>What is HTML?</h3>
27+
2228
<p>
2329
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
2430
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language
2531
that web developers use to structure and describe the content of a webpage
2632
(not a programming language).
2733
</p>
34+
2835
<p>
2936
HTML consists of elements that describe different types of content:
3037
paragraphs, links, headings, images, video, etc. Web browsers understand
3138
HTML and render HTML code as websites.
3239
</p>
40+
41+
<p>In HTML, each element is made up of 3 parts:</p>
42+
43+
<ol>
44+
<li>The opening tag</li>
45+
<li>The closing tag</li>
46+
<li>The actual element</li>
47+
</ol>
48+
49+
<p>You can learn more at the MDN Web Docs.</p>
50+
51+
<h3>Why should you learn HTML?</h3>
52+
53+
<p>
54+
There are countless reasons for learning the fundamental language of the
55+
web. Here are 5 of them:
56+
</p>
57+
58+
<ul>
59+
<li>To be able to use the fundamental web dev language</li>
60+
<li>
61+
To hand-craft beautiful websites instead of relying on tools like
62+
Worpress or Wix
63+
</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>
3370
</body>
3471
</html>

0 commit comments

Comments
 (0)