-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.02 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
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<title>LiZuolei Website</title>
<link rel = "stylesheet" href = "./css/index.css">
<link rel = "stylesheet" href = "./css/base.css">
<link rel = "icon" href = "./picResourse/logo.png">
</head>
<body>
<div class="toppest">
<span class = "words">欢迎访问Test网站!大一打基础,大二去接单!嘿嘿</span>
</div>
<!-- -->
<div class="top-wrapper">
<div class="top-bar">
<ul class = "main-function">
<li>
<a href = "#" class = "home">主页</a>
</li>
<li>
<a href = "#" class ="growth" >成长</a>
</li>
<li>
<a href = "#" class = "daily">日常</a>
</li>
<li>
<a href = "#" class = "about">关于我们</a>
</li>
</ul>
</div>
</div>
<div class="classify-wrapper">
<ul class = "function-wrapper">
<li class = "home">
<img src = "./picResourse/home.png" class = "homePic">
<span>主页</span>
</li>
<li class = "growth">
<img src = "./picResourse/growth.png">
<span>日志</span>
</li>
<li class = "daily">
<img src = "./picResourse/daily.png">
<span>日常</span>
</li>
<li class = "about">
<img src = "./picResourse/about.png">
<span>关于</span>
</li>
</ul>
</div>
</div>
<script type="text/javascript" src = "./js/floatWord.js">
</script>
<script type = "text/javascript" src = "./js/clickFunction.js"></script>
<script type = "text/javascript" src = "./js/setOptionBox.js"></script>
</body>
</html>