-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (131 loc) · 4.97 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./src/fonts/iconfont.css">
<link rel="stylesheet" href="./src/css/index.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<h2>Body Story</h2>
<div>
<i class="iconfont icon-bofang2"></i>
</div>
</header>
<section class="main">
<div class="top">
<img src="./src/images/newYork.jpg" alt="">
</div>
<div class="list">
<dl>
<dt style='background:rgb(32, 233, 149)'>
<i class="iconfont icon-line" style='color:#fff'></i>
</dt>
<dd>
<div>
<h3>强大的在线服务</h3>
<p>快捷在线,每日优鲜</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(14, 209, 223)'>
<i class="iconfont icon-fengjing" style='color:rgb(139, 96, 96)'></i>
</dt>
<dd>
<div>
<h3>美丽风景推荐,人间天堂</h3>
<p>每个人都心驰神往的地方</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(231, 179, 7)'>
<i class="iconfont icon-dribbble" style='color:#fff'></i>
</dt>
<dd>
<div>
<h3>体育的力量</h3>
<p>震撼人心的力量</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(66, 83, 76)'>
<i class="iconfont icon-snapchat" style='color:#fff'></i>
</dt>
<dd>
<div>
<h3>万圣节</h3>
<p>传说中百鬼夜行的时间</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(85, 179, 41)'>
<i class="iconfont icon-Instagram" style='color:#fff'></i>
</dt>
<dd>
<div>
<h3>印象摄影</h3>
<p>每个人都想拥有一台相机</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(219, 75, 195)'>
<i class="iconfont icon-yinxiangbiji" style='color:rgb(68, 56, 56)'></i>
</dt>
<dd>
<div>
<h3>印象笔记</h3>
<p>随时随地随手记</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(207, 195, 16)'>
<i class="iconfont icon-paynumber" style='color:#fff'></i>
</dt>
<dd>
<div>
<h3>金融热点</h3>
<p>商场必备法典</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
<dl>
<dt style='background:rgb(198, 209, 205)'>
<i class="iconfont icon-address" style='color:rgb(238, 14, 14)'></i>
</dt>
<dd>
<div>
<h3>百度地图</h3>
<p>快速定位,快捷出游</p>
</div>
<i class="iconfont icon-24"></i>
</dd>
</dl>
</div>
</section>
<footer class="footer">
<i class="iconfont icon-21"></i>
<i class="iconfont icon-11"></i>
<i class="iconfont icon-18"></i>
<i class="iconfont icon-14"></i>
</footer>
</div>
<script src="./src/js/flexible.js"></script>
</body>
</html>