-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday4-tags.html
75 lines (66 loc) · 1.65 KB
/
day4-tags.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="keywords" content="basic,tags,ins,del,ol,ul">
<meta name="description" content="a demo for various basic tags in HTML">
<title>Basic Tags Showcase</title>
<base target="_blank" href="https://developer.mozilla.org/">
<style>
* {
font-size: 40px;
}
ins::before,
del::before {
position: absolute;
left: .2rem;
}
del::before {
content: "-";
}
ins::before {
content: "+";
}
ins,
del {
position: relative;
padding: 0 1.8rem;
}
ins {
background-color: green;
}
del {
background-color: red;
}
</style>
</head>
<body>
<dl>
<dt>Documents</dt>
<dd>
<img src="favicon-48x48.cbbd161b.png" height="48" width="48" alt="MDN logo">
<p><strong><em>单标签</em>不要写自关闭的斜杠 /</strong></p>
<p><del><img /></del></p>
<p><ins><img ></del></p>
</dd>
<dd>
<img src="favicon-48x48.cbbd161b.png" height="48" width="48" alt="MDN logo">
<p><a href="./"><ins>MDN</ins></a></p>
</dd>
<dd>
<img src="https://www.mcdonalds.com/content/dam/sites/tw/menu/FullMenuLogo.png" height="108" width="108"
alt="not MDN logo">
<p><a href="https://qq.com"><del>NOT MDN</del></a></p>
</dd>
<dt>Tutorials</dt>
<dd>
<img src="favicon-48x48.cbbd161b.png" height="48" width="48" alt="MDN logo">
<p><ins>MDN</ins></p>
</dd>
<dd>
<img src="favicon-48x48.cbbd161b.png" height="48" width="48" alt="MDN logo">
<p><del>FAKE MDN</del></p>
</dd>
</dl>
</body>
</html>