Skip to content

Commit b07eeb7

Browse files
committed
My changes today
1 parent f52bd5e commit b07eeb7

File tree

1 file changed

+62
-1
lines changed

1 file changed

+62
-1
lines changed
Lines changed: 62 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,73 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33

44
<head>
5+
<meta charset="UTF-8" />
56
<title>The Basic Language of the Web: HTML</title>
67
</head>
78

89
<body>
10+
<!--
911
<h1>The Basic Language of the Web: HTML</h1>
12+
<h2>The Basic Language of the Web: HTML</h2>
13+
<h3>The Basic Language of the Web: HTML</h3>
14+
<h4>The Basic Language of the Web: HTML</h4>
15+
<h5>The Basic Language of the Web: HTML</h5>
16+
<h6>The Basic Language of the Web: HTML</h6>
17+
-->
18+
19+
<h1>📘 The Code Magazine</h1>
20+
<h2>The Basic Language of the Web: HTML</h2>
21+
<img src="laura-jones.jpg" alt="Headshot of Laura Jones" width="50" height="50" />
22+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
23+
24+
<img src="post-img.jpg" alt="HTML code on a screen" width="500" height="200">
25+
26+
<p>
27+
All modern websites and web applications are built using three <em>fundamental</em>
28+
technologies: HTML, CSS and JavaScript. These are the languages of the web.
29+
</p>
30+
31+
<p>
32+
In this post, let's focus on HTML. We will
33+
learn what HTML is all about, and why you too should learn it.
34+
</p>
35+
36+
<h3>What is HTML?</h3>
37+
<p>
38+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext <strong>M</strong>arkup <strong>L</strong>anguage.
39+
It's a markup language that web developers use to structure and
40+
describe the content of a webpage (not a programming language).
41+
</p>
42+
<p>
43+
HTML consists of elements that describe different types of
44+
content: paragraphs, links, headings, images, video, etc.
45+
Web browsers understand HTML and render HTML code as websites.
46+
</p>
47+
48+
<p>In HTML, each element is made up of 3 parts:</p>
49+
50+
<ol>
51+
<li>The opening tag</li>
52+
<li>The closing tag</li>
53+
<li>The actual element</li>
54+
<li>You can learn more at the MDN Web Docs.</li>
55+
</ol>
56+
57+
<h3>Why should you learn HTML?</h3>
58+
59+
<p>There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</p>
60+
61+
<ul>
62+
<li>To be able to use the fundamental web dev language</li>
63+
<li>To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</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>
70+
1071
</body>
1172

1273
</html>

0 commit comments

Comments
 (0)