-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDownloadPhone.html
86 lines (84 loc) · 2.3 KB
/
DownloadPhone.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="typeface.css">
<style>
body {
background-color: #333;
font-family: Arial, sans-serif;
text-align: center;
color: #fff;
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
height: 100vh;
}
.header {
background-color: #e0e0e0;
padding: 10px;
display: flex;
font-family: Arial, sans-serif;
text-align: center;
color: #323232;
align-items: center;
}
.header img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.content {
position: relative;
margin-top: auto;
margin-bottom: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
.app-name {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
.images {
display: flex;
justify-content: center;
height: 75vh;
}
.images img {
height: 75%;
margin: 0 5px;
}
.button {
background-color: #fff;
color: #000;
padding: 10px 20px;
margin-top: 20px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
}
</style>
</head>
<body>
<div class="header">
<img src="dztlogo.png" alt="icon">
<span>掉渣田APP</span>
</div>
<div class="content">
<div class="app-name">掉渣田APP</div>
<div class="images">
<!-- <img src=images/Phone/xuanchuan1.jpg alt="你网不好">
<img src=images/Phone/xuanchuan2.jpg alt="你网不好²"> -->
<img src=images/Phone/bushigemen.png alt="你网不好">
</div>
<a href="jumps/APP.html" class="bottom-style2">立即下载</a>
</div>
</body>
</html>