-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
102 lines (97 loc) · 1.9 KB
/
home.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link href="css/mui.min.css" rel="stylesheet" />
<style>
body
{
background-image:url('images/user_info_bg.png');
}
}
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
.topper{
margin-top: 10%;
margin-left: 40%;
margin-right: 20%;
padding: 0px;
}
.title_top{
margin-left: 35%;
margin-right:20%;
margin-bottom: 20%;
}
.login{
margin-left: 20%;
margin-right: 15%;
margin-bottom: 5%;
padding: 0px;
}
a { text-decoration:none; }
a:hvoer { text-decoration:underline; }
.login a
{
display:block;
padding-left:40px;
font-size:16px;
border: 1px solid #FFFFFF;
-webkit-border-radius:3em;
-moz-border-radius: 3em;
}
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a:link,a:visited
{
display:block;
width:200px;
font-weight:bold;
color:#FFFFFF;
background-color:transparent;
text-align:center;
padding:4px;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#FFFFFF;
color:#6D6D72;
}
</style>
</head>
<body>
<div class="topper">
<img src="images/logo.png" align="center" width="30%" height="30%" />
</div>
<div class="title_top">
<h2 class="title">集智测评</h2>
</div>
<div class="login">
<ul><li><li><a href="login.html">登录</a></li>
</div>
<div class="login">
<ul><li><li><a href="reg.html">注册</a></li>
</div>
<script src="js/mui.min.js"></script>
<script type="text/javascript">
mui.init()
</script>
</body>
</html>