-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
113 lines (91 loc) · 3.44 KB
/
example.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header >
<img src="" alt="logo">
<img src="" alt="logo2" align="right">
</header>
<nav style="background-color:rgb(176, 207, 124);">
<a href="">Home</a> |
<a href="">About</a> |
<a href="">Products</a>
</nav>
<main style="background-color:rgb(229, 181, 248); padding:10px">
<section style="background-color:rgb(150, 181, 232);">
<div></div>
<div></div>
<div></div>
</section>
<section style="background-color:rgb(82, 92, 65);">
<div></div>
<div></div>
<div></div>
</section>
<!-- <a href=""><h1>Main Title</h1></a> -->
<h1><a href="">Main Title </a> </h1>
<p style="background-color: aqua;">sfk</p>
<p>the 2nd paragraph</p>
<a href="">link</a>
<!-- <i></i>
<b></b>
<em></em>
<strong></strong>
-->
<!-- <ins></ins>
<del>$999</del>
<s>$999</s> -->
<div style="background-color:rgb(31, 177, 222);height:100px">
<a href="https://www.google.com"><img src="" alt=""></a>
<button> <a href="">click me</a></button>
<a href=""><button>click me</button></a>
</div>
<table style="background-color:burlywood;height:100px">
<thead>
<tr>
<th>Month</th> <th>Date</th> <th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nov</td> <td>13</td>
</tr>
<tr>
<td>Nov</td> <td>16</td>
</tr>
</tbody>
</table>
<form action="" style="background-color:rgb(172, 200, 77);height:100px">
<input type="text" placeholder="First Name">
<input type="radio">
<input type="checkbox">
<input type="month">
<input type="email">
<input type="number">
<button type="submit">check result</button>
</form>
<figure align="center" style="background-color: bisque;">
<img width="30%" height="200px" src="bird1.jpg" alt="">
<img width="30%" height="200px" src="bird2.jpg" alt="">
<img width="30%" height="200px" src="bird3.jfif" alt="">
</figure>
<!-- <h1><mark>Practice: Display a Youtube video, your own video,
an audio(eg.a song) on the page</mark></h1>
</h1> -->
<video src="dog story.mp4" controls></video>
<audio src="song.mp3" controls></audio>
<iframe src="https://www.youtube.com/embed/V8A4qudmsX0?si=lJJ2paINOofeUNox" frameborder="0" width="80%" height="400px" align="center"></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/V8A4qudmsX0?si=lJJ2paINOofeUNox" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</main>
<footer style="background-color:rgb(86, 52, 7);">
</footer>
<map name="">
<fieldset></fieldset>
</map>
</body>
</html>