-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.html
40 lines (40 loc) · 1.06 KB
/
html.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center><h1 title="Hyper Text Markup">HTML</h1></center>
<h2>What is HTML?</h2>
<ul>
<li>HTML stands for Hyper Text Markup Language</li>
<li>HTML is the standard markup language for creating Web pages</li>
<li>HTML describes the structure of a Web page</li>
<li>HTML consists of a series of elements</li>
<li>HTML elements tell the browser how to display the content</li>
<li>HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.</li>
<br>
<br>
<br>
</ul>
<h3>Example</h3>
<iframe src = "ex.txt"></iframe><br>
<br>
<ul>
<p>Basic tags</p>
<li><HTML></li>
<li><p></li>
<li><h1></li>
<li><h2></li>
<li><h3></li>
<li><h4></li>
<li><h5></li>
<li><h6></li>
<li><table></li>
<li><form></li>
<li><br></li>
</ul>
</body>
</html>