-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.bak.html
94 lines (82 loc) · 1.89 KB
/
index.bak.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>系统入口</title>
<style>
*{
padding: 0;
margin: 0;
}
#os_title{
height: 50%;
width: 100%;
font-size: 60px;
font-weight: bold;
text-align: center;
margin: 50px auto;
}
/* #os_enter{
width: 100%;
margin: 0 auto;
} */
#os_enter img{
width: 100%;
height: 100%;
}
.enter_student{
float: left;
width: 300px;
height: 300px;
margin-top: 20px;
margin-left: 100px;
font-size: 50px;
text-align: center;
}
.enter_techter, .enter_root, .enter_maintenance{
float: left;
width: 300px;
height: 300px;
margin-top: 20px;
margin-left: 50px;
}
#os_foot{
position: fixed;
width: 100%;
height: 20px;
text-align: center;
bottom: 20px;
}
</style>
</head>
<body>
<div id="os_title">
实验室设备管理系统 V2.1
</div>
<div id="os_enter">
<div class="enter_student">
<a href="login.html">
<img src="images/enter_student.jpg" title="学生入口"/>
</a>
</div>
<div class="enter_techter">
<a href="login.html">
<img src="images/enter_techter.jpg" title="教师入口"/>
</a>
</div>
<div class="enter_root">
<a href="login.html">
<img src="images/enter_root.jpg" title="管理员入口"/>
</a>
</div>
<div class="enter_maintenance">
<a href="login.html">
<img src="images/enter_maintenance.jpg" title="维修入口"/>
</a>
</div>
</div>
<div id="os_foot">
@版权所有,请勿抄袭 2019-2020
</div>
</body>
</html>