-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_tag_meta.html
51 lines (47 loc) · 1.15 KB
/
html_tag_meta.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
48
49
50
51
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="paul" />
<meta name="keywords" content="batman, dark knight" />
<meta name="description" content="a legend" />
<meta
http-equiv="refresh"
content="5;URL='https://www.youtube.com/shorts/5DUC8C6VOcQ'" />
<title>Document</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
font-size: x-large;
text-align: center;
background-color: #f0f0f0;
}
.container {
margin: 20px 350px;
padding: 20px;
box-shadow: 0 0 5px black;
border-radius: 5px;
background-color: #fff;
}
ul {
list-style-type: none;
}
</style>
</head>
<body>
<h1>HTML Tag : Meta</h1>
<div class="container">
<p>Following meta tags are used in this document:</p>
<ul>
<li><strong>author:</strong> paul</li>
<li><strong>keywords:</strong> batman, dark knight</li>
<li><strong>description:</strong> a legend</li>
<li>
<strong>refresh:</strong> redirects to youtube short in 5
seconds
</li>
</ul>
</div>
</body>
</html>