-
Notifications
You must be signed in to change notification settings - Fork 0
/
24Aug.html
47 lines (42 loc) · 1.38 KB
/
24Aug.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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Pulkit Jain Website For Basic Knowledge">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Pulkit Jain">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main File Of HTML With CSS</title>
</head>
<style>
.gr {
background-color: greenyellow;
}
.w {
width: 500px;
}
</style>
<body bgcolor="black">
<h1 align="center" class="gr">All Tag With Examples</h1>
<h2 class="gr w">HEADINGS</h2>
<div class="gr">
<h1>Heading 1</h1>
<h2>Heading 2</h2>
</div>
<!--<h1 style="font-family:verdana;font-size:300%;color: gold;">This is a heading</h1>
<p style="font-family:Arial, Helvetica, sans-serif; color:red;font-size:300%;"> This is a paragraph.</p>
<b> - Bold text </b> <br>
<strong> - Important text </strong><br>
<i> - Italic text </i><br>
<u>- underline</u> <br>
<em> - Emphasized text </em> <br>
<mark> - Marked text </mark><br>
<small> - Small text </small><br>
<del> - Deleted text</del><br>
<ins> - Inserted text </ins><br>
<sub> - Subscript text </sub><br>
<sup> - Superscript text </sup><br>
-->
</body>
</html>