Skip to content

Commit 0b83091

Browse files
committed
different Text types in HTML
1 parent 10de6bc commit 0b83091

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>The Basic Language of the Web: HTML</title>
5+
</head>
6+
7+
<body>
8+
<h1>The Code Magazine</h1>
9+
<!-- Here are the different text sizes in the basic html -->
10+
<!-- <h1>The Basic Language of the Web: HTML</h1> -->
11+
<h2>The Basic Language of the Web: HTML</h2>
12+
<!-- <h3>The Basic Language of the Web: HTML</h3> -->
13+
<!-- <h4>The Basic Language of the Web: HTML</h4> -->
14+
<!-- <h5>The Basic Language of the Web: HTML</h5> -->
15+
<!-- <h6>The Basic Language of the Web: HTML</h6> -->
16+
17+
<p>
18+
All modern websites and web applications are built using three fundamental
19+
technologies: HTML, CSS and JavaScript. These are the languages of the
20+
web.
21+
</p>
22+
<p>
23+
In this post, let's focus on HTML. We will learn what HTML is all about,
24+
and why you too should learn it.
25+
</p>
26+
<h3>What is HTML?</h3>
27+
<p>
28+
HTML stands for HyperText Markup Language. It's a markup language that web
29+
developers use to structure and describe the content of a webpage (not a
30+
programming language).
31+
</p>
32+
33+
<p>
34+
HTML consists of elements that describe different types of content:
35+
paragraphs, links, headings, images, video, etc. Web browsers understand
36+
HTML and render HTML code as websites.
37+
</p>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)