-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhgroup.html
More file actions
36 lines (35 loc) · 896 Bytes
/
hgroup.html
File metadata and controls
36 lines (35 loc) · 896 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width"/>
<meta name="author" content="vinod kumar"/>
<meta name="description" content="html tutorial" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="html,css,css3,html5" />
<meta http-equiv="refresh" content="5"/>
<base href="http://hgroup.html" target="_blank"/>
<title> hgroup tag </title>
<style type="text/css">
body{
background-color:violet;
color:yellow;
font-family:ravie,verdana,Helvetica,sans-serif,Tahoma,Arial;
border:4px solid white;
border-width:15px;
}
h1{
color:green;
padding:4px;
margin:0px;
}
</style>
</head>
<body>
<h1> Thise is h1 heading tag</h1>
<h2> Thise is h2 heading tag</h2>
<h3> Thise is h3 heading tag</h3>
<h4> Thise is h4 heading tag</h4>
<h5> Thise is h5 heading tag</h5>
<h6> Thise is h6 heading tag</h6>
</body>
</html>