forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.11 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>华为商城-列表排序</title>
<!--import css-->
<link rel="stylesheet" href="css/reset.min.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<!--MENU-->
<div class="menu clearfix">
<span>排序:</span>
<a href="javascript:;">
上架时间
<i class="up"></i>
<i class="down"></i>
</a>
<a href="javascript:;">
价格
<i class="up"></i>
<i class="down"></i>
</a>
<a href="javascript:;">
热度
<i class="up"></i>
<i class="down"></i>
</a>
</div>
<!--LIST-->
<ul class="mallList clearfix" id="mallItem">
<!--<li><a href="#">
<img src="img/1.jpg" alt="">
<span class="title">华为运动蓝牙耳机</span>
<span class="price">¥422</span>
</a></li>-->
</ul>
</div>
<!--import js-->
<script src="js/utils.js"></script>
<script src="js/index.js"></script>
</body>
</html>