-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (44 loc) · 976 Bytes
/
index.html
File metadata and controls
60 lines (44 loc) · 976 Bytes
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
<html>
<head>
<title>Call me</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<style>
* {
box-sizing: border-box;
}
/* body 样式 */
body {
font-family: Arial;
margin: 0;
//background-color : #000000;
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
position: relative;
}
/* 标题 */
.content {
text-align: center;
//background: #1abc9c;
color: white;
}
/* 标题字体加大 */
.content a {
font-size: 40px;
overflow:hidden; position: fixed;bottom: 22;left: 0;
}
a:link {color:#ffffff}
a:visited {color:#ffffff}
a:hover {color:#ffffff}
a:active {color:#ffffff}
</style>
</head>
<body>
<div class="content">
<a href="tel:10000">
<img src="phone.png" width="60px" height="60px" align="absmiddle">
</a>
</div>
</body>
</html>