-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.33 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
img {
width: 30vh;
height: 30vhx;
object-fit: cover;
}
video {
width: 400px;
}
ul {
list-style: none;
}
table, td, th {
border: 1px solid grey;
border-collapse: collapse;
padding: 8px;
}
</style>
<body>
<a href="My Document.html" target="_blank">
<img src="images/myAvatar.jpg" alt="Ash(Your Teacher)">
<a href="images/myAvatar.jpg" download>My name is Spike</a>
<video controls autoplay loop src="videos/free-videos.mp4">
Your browser does not support the video tag.
</video>
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>
<dl>
<dt>HTML</dt>
<dd>aa</dd>
<dt>123</dt>
<dd>abc</dd>
</dl>
<table>
<thead>
<tr>
<th>Department</th>
<th>Number</th>
</tr>
</thead>
<tbody>
<tr>
<td>marketing</td>
<td>123</td>
</tr>
<tr>
<td>marketing</td>
<td>123</td>
</tbody>
</table>
</body>
</html>