Skip to content

Commit adf5099

Browse files
committed
Added a couple of paragraphs and headings. Used strong and em tags also.
1 parent e11bc27 commit adf5099

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,43 @@
55
</head>
66

77
<body>
8+
<!--
89
<h1>The Basic Language of the Web: HTML</h1>
10+
<h2>The Basic Language of the Web: HTML</h2>
11+
<h3>The Basic Language of the Web: HTML</h3>
12+
<h4>The Basic Language of the Web: HTML</h4>
13+
<h5>The Basic Language of the Web: HTML</h5>
14+
<h6>The Basic Language of the Web: HTMLW</h6>
15+
-->
16+
17+
<h1>📘 The Code Magazine</h1>
18+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
19+
20+
<h2>The Basic Language of the Web: HTML</h2>
21+
<p>
22+
All modern websites and web applications are built using three
23+
<em>fundamental</em> technologies: HTML, CSS and JavaScript. These
24+
are the languages of the web.
25+
</p>
26+
27+
<p>
28+
In this post, let's focus on HTML. We will learn what HTML is all
29+
about, and why you too should learn it.
30+
</p>
31+
32+
<h3>What is HTML?</h3>
33+
<p>
34+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
35+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup
36+
language that web developers use to structure and describe the
37+
content of a webpage (not a programming language).
38+
</p>
39+
<p>
40+
HTML consists of elements that describe different types of content:
41+
paragraphs, links, headings, images, video, etc. Web browsers
42+
understand HTML and render HTML code as websites.
43+
</p>
44+
45+
<h3>Why should you learn HTML?</h3>
946
</body>
1047
</html>

0 commit comments

Comments
 (0)