Skip to content

Commit e6175dc

Browse files
committed
adjusted html page
1 parent 424835c commit e6175dc

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>The Basic Language of the web: HTML</title>
5+
</head>
6+
<body>
7+
<h1>The Basic Language of the web: HTML</h1>
8+
<h1>📘 The Code Magazine</h1>
9+
<p>Posted by Laura Jones on Monday, June 21st 2027</p>
10+
11+
<h2>The Basic Language of the Web: HTML</h2>
12+
13+
<h3>What is HTML?</h3>
14+
15+
<!--
16+
All modern websites and web applications are built using three fundamental technologies: HTML, CSS and JavaScript. These are the languages of the web.
17+
18+
In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.
19+
20+
21+
22+
HTML stands for HyperText Markup Language. It's a markup language that web developers use to structure and describe the content of a webpage (not a programming language).
23+
24+
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.
25+
26+
In HTML, each element is made up of 3 parts:
27+
28+
The opening tag
29+
The closing tag
30+
The actual element
31+
You can learn more at the MDN Web Docs.
32+
33+
Why should you learn HTML?
34+
35+
There are countless reasons for learning the fundamental language of the web. Here are 5 of them:
36+
37+
To be able to use the fundamental web dev language
38+
To hand-craft beautiful websites instead of relying on tools like Worpress or Wix
39+
To build web applications
40+
To impress friends
41+
To have fun 😃
42+
43+
Hopefully you learned something new here. See you next time! -->
44+
</body>
45+
</html>

0 commit comments

Comments
 (0)