Skip to content

Commit 9436ee5

Browse files
committed
making changes
1 parent 10de6bc commit 9436ee5

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>The Basic Language of the Web: HTML</title>
5+
</head>
6+
<body>
7+
<!----
8+
This is a comment
9+
-->
10+
<h1>📘 The Code Magazine</h1>
11+
12+
<p>The Basic Language of the Web: HTML</p>
13+
14+
Posted by Laura Jones on Monday, June 21st 2027 All modern websites and web
15+
applications are built using three fundamental technologies: HTML, CSS and
16+
JavaScript. These are the languages of the web. In this post, let's focus on
17+
HTML. We will learn what HTML is all about, and why you too should learn it.
18+
19+
<img
20+
src="post-img.jpg"
21+
alt="HTML code on a screen"
22+
width="500"
23+
height="200"
24+
/>
25+
26+
<h3>What is HTML?</h3>
27+
28+
<p>
29+
HTML stands for HyperText Markup Language. It's a markup language that web
30+
developers use to structure and describe the content of a webpage (not a
31+
programming language).
32+
</p>
33+
34+
<p>
35+
HTML consists of elements that describe different types of content:
36+
paragraphs, links, headings, images, video, etc. Web browsers understand
37+
HTML and render HTML code as websites.
38+
</p>
39+
40+
<p>In HTML, each element is made up of 3 parts:</p>
41+
42+
<ol>
43+
<li>The opening tag</li>
44+
<li>The closing tag</li>
45+
<li>The actual element</li>
46+
<li>You can learn more at the MDN Web Docs.</li>
47+
</ol>
48+
49+
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML">MDM Web Docs</a>
50+
51+
<h3>Why should you learn HTML?</h3>
52+
53+
<p>
54+
There are countless reasons for learning the fundamental language of the
55+
web. Here are 5 of them:
56+
</p>
57+
58+
<ul>
59+
<li>To be able to use the fundamental web dev language</li>
60+
<li>
61+
To hand-craft beautiful websites instead of relying on tools like
62+
Wordpress or Wix
63+
</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+
</body>
71+
</html>

0 commit comments

Comments
 (0)