-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (155 loc) · 5.06 KB
/
Copy pathindex.html
File metadata and controls
167 lines (155 loc) · 5.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="style.css" rel="stylesheet" />
<title>This basic language of the web: HTML</title>
</head>
<body>
<div class="container">
<!--
<h1>This basic language of the web: HTML</h1>
<h2>This basic language of the web: HTML</h2>
<h3>This basic language of the web: HTML</h3>
<h4>This basic language of the web: HTML</h4>
<h5>This basic language of the web: HTML</h5>
<h6>This basic language of the web: HTML</h6>
-->
<header class="main-header clearfix">
<h1>📘 The Code Magazine</h1>
<nav>
<a href="blog.html">Blog</a>
<a href="#">Challenges</a>
<a href="flexbox.html">Flexbox</a>
<a href="css-grid.html">CSS Grid</a>
</nav>
<!-- <div class="clear"></div> -->
</header>
<!-- ONLY NECESSARY FOR FLEXBOX -->
<!-- <div class="row"> -->
<article>
<header class="post-header">
<h2>The Basic Language of the Web: HTML</h2>
<div class="author-box">
<img
src="img/laura-jones.jpg"
alt="an image of Laura Jones"
width="50"
height="50"
class="author-img"
/>
<p id="author" class="author">
Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027
</p>
</div>
<img
src="img/post-img.jpg"
alt="HTML code on the a screen"
width="500"
height="200"
class="post-img"
/>
<button>🧡Like</button>
</header>
<p>
All modern websites and web applications are built using three
fundamental technologies: <em>HTML, CSS and JavaScript</em>. These are
the languages of the web.
</p>
<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>
<h3>What is HTML?</h3>
<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>
<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>
<p>In HTML, each element is made up of 3 parts:</p>
<ol>
<li class="first-li">The opening tag</li>
<li>The closing tag</li>
<li>The actual element</li>
</ol>
<p>
To learn more click at
<a
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank"
>MDN Web Docs.
</a>
</p>
<h3>Why should you learn HTML?</h3>
<p>
There are countless reasons for learning the fundamental language of
the web. Here are 5 of them:
</p>
<ul>
<li class="first-li">
To be able to use the fundamental web dev language
</li>
<li>
To hand-craft beautiful websites instead of relying on tools like
Worpress or Wix
</li>
<li>To build web applications</li>
<li>To impress friends</li>
<li>To have fun 😃</li>
</ul>
<p>Hopefully you learned something new here. See you next time!</p>
</article>
<aside>
<h4>Related posts</h4>
<ul class="related">
<li class="related-post">
<img
src="img/related-1.jpg"
alt="a person coding on the screen"
width="75"
height="75"
/>
<div>
<a href="#" class="related-link">How to learn Web Development?</a>
<p class="related-author">by Abhishek Goswami</p>
</div>
</li>
<li class="related-post">
<img
src="img/related-2.jpg"
alt="thunderstrom"
width="75"
height="75"
/>
<div>
<a href="#" class="related-link">The unknown power of CSS</a>
<p class="related-author">by Akashdeep Mohanta</p>
</div>
</li>
<li class="related-post">
<img
src="img/related-3.jpg"
alt="javascript code on a screen"
width="75"
height="75"
/>
<div>
<a href="#" class="related-link">Why javascript is awesome?</a>
<p class="related-author">by Swarnadeep Nath</p>
</div>
</li>
</ul>
</aside>
<!-- </div> -->
<footer>
<p id="copyright">Copyright © 2025 by The Code Magazine.</p>
</footer>
</div>
</body>
</html>