-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 1.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- <script src="./asyncJS.js" async></script> -->
<!-- <script src="./asyncJS2.js" async></script> -->
<!-- <script src="./asyncJS3.js" async></script> -->
<script src="./deferJS.js" defer></script>
<script src="./deferJS2.js" defer></script>
<script src="./deferJS3.js" defer></script>
<style>
* {
margin: 0;
padding: 0;
}
body,
html {
width: 100%;
height: 100%;
overflow: hidden;
}
img {
display: block;
width: 500px;
}
</style>
</head>
<body>
<p>加一些文本</p>
<p>加一些图片</p>
<img
src="https://w.wallhaven.cc/full/dp/wallhaven-dpv57j.png"
alt=""
width="500"
height="281"
/>
<img
src="https://th.wallhaven.cc/small/57/57pwk3.jpg"
width="500"
height="333"
alt=""
/>
<img
src="https://th.wallhaven.cc/small/j3/j3d78p.jpg"
width="500"
height="333"
alt=""
/>
<script src="./noneJS.js"></script>
<script src="./noneJS2.js"></script>
<!-- <script src="./noneJS3.js"></script> -->
</body>
</html>