Skip to content

Commit c545dc9

Browse files
committed
Submit initial
1 parent 10de6bc commit c545dc9

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>The Basic Language of the Web: HTML</title>
5+
<body>
6+
<h1>📘 The Code Magazine</h1>
7+
<p>Posted by Laura Jones on Monday, June 21st 2027</p>
8+
<img src="post-img.jpg" />
9+
<h2>The Basic Language of the Web: HTML</h2>
10+
<p>
11+
All modern websites and web applications are built using three
12+
fundamental technologies: HTML, CSS and JavaScript. These are the
13+
languages of the web.
14+
</p>
15+
<p>
16+
In this post, let's focus on HTML. We will learn what HTML is all about,
17+
and why you too should learn it.
18+
</p>
19+
<h3>What is HTML</h3>
20+
<p>
21+
HTML stands for HyperText Markup Language. It's a markup language that
22+
web developers use to structure and describe the content of a webpage
23+
(not a programming language).
24+
</p>
25+
<p>
26+
HTML consists of elements that describe different types of content:
27+
paragraphs, links, headings, images, video, etc. Web browsers understand
28+
HTML and render HTML code as websites.
29+
</p>
30+
<p>In HTML, each element is made up of 3 parts:</p>
31+
<ol>
32+
<li>The opening tag</li>
33+
<li>The closing tag</li>
34+
<li>The actual element</li>
35+
</ol>
36+
<p>
37+
You can learn more at the
38+
<a href="https://developer.mozilla.org">MDN Web Docs.</a>
39+
</p>
40+
</body>
41+
</head>
42+
</html>

0 commit comments

Comments
 (0)