You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<title>The Basic Language of the Web: HTML</title>
8
-
</head>
9
-
<body>
8
+
</head>
9
+
<body>
10
10
<header>
11
-
<h1>📘 The Code Magazine [DEMO]</h1>
12
-
<nav>
13
-
<ahref="#">Blog</a>
14
-
<ahref="#">Challenges</a>
15
-
<ahref="#">Flexbox</a>
16
-
<ahref="#">Flexbox</a>
17
-
</nav>
11
+
<h1>📘 The Code Magazine [DEMO]</h1>
12
+
<nav>
13
+
<ahref="#">Blog</a>
14
+
<ahref="#">Challenges</a>
15
+
<ahref="#">Flexbox</a>
16
+
<ahref="#">Flexbox</a>
17
+
</nav>
18
18
</header>
19
19
<main>
20
-
<article>
21
-
<section>
22
-
<h2>The Basic Language of the Web: HTML</h2>
23
-
<imgsrc="laura-jones.jpg" />
24
-
<p>Posted by <strong>Laura Jones</strong> on Monday,June 21st 2027</p>
25
-
</section>
26
-
<section>
27
-
<div>
28
-
<imgsrc="post-img.jpg" alt="picture of code" >
29
-
<p>
30
-
All modern websites and web applications are built using three <em>fundamental</em> technologies: HTML, CSS and JavaScript. These are the languages of the web.
31
-
</p>
32
-
<p>In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.</p>
33
-
</div>
34
-
<div>
35
-
<h2>What is HTML?</h2>
36
-
<p>HTML stands for <strong>H</strong>yper<strong>T</strong>ext<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language that web developers use to structure and describe the content of a webpage (not a programming language).</p>
37
-
<p>HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video, etc. Web browsers understand HTML and render HTML code as websites.</p>
38
-
</div>
39
-
<div>
40
-
<p>In HTML, each element is made up of 3 parts:</p>
41
-
<ol>
42
-
<li>The opening tag</li>
43
-
<li>The closing tag</li>
44
-
<li>The actual element</li>
45
-
</ol>
46
-
<p>You can learn more at the <ahref='#'>MDN Web Docs</a>.</p>
47
-
</div>
48
-
<div>
49
-
<h2>Why should you learn HTML?</h2>
50
-
<p>There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</p>
51
-
<ul>
52
-
<li>To be able to use the fundamental web dev language</li>
53
-
<li>To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</li>
54
-
<li>To build web applications</li>
55
-
<li>To impress friends</li>
56
-
<li>To have fun 😃</li>
57
-
</ul>
58
-
<p>Hopefully you learned something new here. See you next time!</p>
59
-
</div>
60
-
</section>
61
-
</article>
20
+
<article>
62
21
<section>
63
-
<h3>Related posts</h3>
22
+
<h2>The Basic Language of the Web: HTML</h2>
23
+
<imgsrc="./images/laura-jones.jpg" />
24
+
<p>Posted by <strong>Laura Jones</strong> on Monday,June 21st 2027</p>
25
+
</section>
26
+
<section>
27
+
<div>
28
+
<imgsrc="./images/post-img.jpg" alt="picture of code" />
29
+
<p>
30
+
All modern websites and web applications are built using three
31
+
<em>fundamental</em> technologies: HTML, CSS and JavaScript. These
32
+
are the languages of the web.
33
+
</p>
34
+
<p>
35
+
In this post, let's focus on HTML. We will learn what HTML is all
0 commit comments