Skip to content

Commit 7301d6f

Browse files
hh
1 parent 330edd1 commit 7301d6f

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title> the basic html </title>
5+
6+
</head>
7+
8+
9+
10+
<body>
11+
<!----
12+
<h1> This is a heading </h1>
13+
<h2> This is a heading </h2>-->
14+
<h1>📘 The Code Magazine</h1>
15+
<p>Posted by <b>Laura Jones</b> on Monday, June 21st 2027</p>
16+
<h2>The Basic Language of the Web: HTML</h2>
17+
<p>HTML is the basic <em>language of the web</em>. It is used to create web pages and web applications. HTML stands for HyperText Markup Language. It is used to create the structure of a web page. HTML is made up of elements. Elements are the building blocks of HTML pages. An element is a piece of content in a web page. Elements are surrounded by tags. Tags are used to mark up HTML elements. Tags are enclosed in angle brackets. Tags usually come in pairs. The opening tag marks the beginning of an element. The closing tag marks the end of an element. The content of an element is placed between the opening and closing tags. Here is an example of an HTML element:</p>
18+
<h3>What is HTML?</h3>
19+
<p>
20+
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).
21+
22+
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.
23+
24+
In HTML, each element is made up of 3 parts:
25+
26+
The opening tag
27+
The closing tag
28+
The actual element
29+
You can learn more at the MDN Web Docs.
30+
</p>
31+
32+
33+
34+
35+
</body>
36+
37+
</html>

0 commit comments

Comments
 (0)