-
Notifications
You must be signed in to change notification settings - Fork 0
/
semtags_webIcon.html
80 lines (68 loc) · 1.74 KB
/
semtags_webIcon.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<!-- semantic tags -->
<html>
<head>
<title>site</title>
<link rel="icon" href="images/favicon.png">
<!-- give icon to websites -->
<meta charset="UTF-8">
<style>
header {
background-color: cornflowerblue;
color: black;
text-align: center;
}
section {
background-color: burlywood;
height: 214px;
}
footer {
background-color: cornflowerblue;
color: black;
text-align: center;
}
.img1 {
position: relative;
left: 62px;
}
.fig1 {
text-align: center;
}
aside {
border: black thin solid;
width: 200px;
display: block(none);
}
</style>
</head>
<body>
<header>
<menu>
<nav>
<span>HOME</span>
<span>CONTACT</span>
<span>ABOUT</span>
</nav>
</menu>
</header>
<section>
<dialog open>
<form>
comments:
<input type="text">
<button>post comments</button>
</form>
<figure>
<img class="img1"
src="https://tse1.mm.bing.net/th?id=OIP._Kyo3ZnkLNANHhNsT7uTNwHaEo&pid=Api&rs=1&c=1&qlt=95&w=196&h=122"
width="150" height="100">
<figcaption class="fig1">JEETA CHEETAH</figcaption>
</figure>
</dialog>
</section>
<br>
<footer>
<div>© copyright 2021, sidharth juyal</div>
</footer>
</body>
</html>