-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcakeSort.html
More file actions
109 lines (89 loc) · 2.77 KB
/
cakeSort.html
File metadata and controls
109 lines (89 loc) · 2.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>oh my cake-蛋糕分类</title>
<link rel="stylesheet" href="css/public.css" />
<link rel="stylesheet" href="css/cakeSort.css" />
<script type="text/javascript" src="js/public.js" ></script>
</head>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.js"></script>
<![endif]-->
<body>
<div class="cakeSort">
<!--header-->
<header class="boxSizing">
<a href="index.html"><i class="iconfont"></i></a>
<h1><img src="images/s_logo.jpg"/></h1>
<a href="search.html"><i class="iconfont"></i></a>
</header>
<!--banner-->
<div class="banner">
<p><img src="images/s_banner.png" width="100%" /></p>
<p class="boxSizing">
<img class="s_w" src="images/s_w.png"/>
<span class="word">糕 儿 颜 值</span>
</p>
</div>
<!--sort-->
<div class="sort">
<dl class="sort1">
<a href="sort_fruit.html">
<dt><img src="images/s_c1.png" width="100%"/></dt>
<dd>奶油蛋糕</dd>
</a>
<a href="sort_cookie.html">
<dt><img src="images/s_c2.png" width="50%"/></dt>
<dd>冰激凌蛋糕</dd>
</a>
<a href="#">
<dt><img src="images/s_c3.png" width="100%"/></dt>
<dd>生日蛋糕</dd>
</a>
</dl>
<br />
<dl class="sort1">
<a href="#">
<dt><img src="images/s_c4.png" width="100%"/></dt>
<dd>造型蛋糕</dd>
</a>
<a href="#">
<dt><img src="images/s_c5.png" width="100%"/></dt>
<dd>马卡龙蛋糕</dd>
</a>
<a href="#">
<dt><img src="images/s_c6.png" width="100%"/></dt>
<dd>纸杯蛋糕</dd>
</a>
</dl>
<br />
<dl class="sort1">
<a href="#">
<dt><img src="images/s_c7.png" width="90%"/></dt>
<dd>水果蛋糕</dd>
</a>
<a href="#">
<dt><img src="images/s_c8.png" width="100%"/></dt>
<dd>汤匙蛋糕</dd>
</a>
<a href="#">
<dt><img src="images/s_c9.png" width="80%"/></dt>
<dd>婚礼蛋糕</dd>
</a>
</dl>
</div>
<!--footer-->
<footer>
<a href="index.html"><i class="iconfont"></i><span>主页</span></a>
<a href="select.html"><i class="iconfont"></i><span>精选</span></a>
<a href="uploading1.html"><img src="images/icon-bg.png"/><span>上传</span></a>
<a href="sweetRing.html"><img src="images/icon-ttq.png"/><span>甜甜圈</span></a>
<a href="memenber.html"><img src="images/icon-csm.png"/><span>我的</span></a>
</footer>
</div>
</body>
</html>