-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop_cart.html
More file actions
32 lines (30 loc) · 1.15 KB
/
shop_cart.html
File metadata and controls
32 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>购物车</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://apps.bdimg.com/libs/bootstrap/3.3.0/css/bootstrap.min.css">
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://apps.bdimg.com/libs/bootstrap/3.3.0/js/bootstrap.min.js"></script>
</head>
<body>
<header id="header" class="">
<a href="index.html">
<span class="glyphicon glyphicon-home"></span>
</a>
<a class="pull-right" href="personal.html" title=""><span class="glyphicon glyphicon-user"></span></a>
<p class="text-center">我的购物车</p>
</header><!-- /header -->
<div class="container">
</div>
<nav>
<ul class="nav nav-tabs navbar-fixed-bottom navbar-inverse">
<li><a href="index.html" title="">商城</a></li>
<li><a href="order.html" title="我的订单">订单</a></li>
<li><a href="shop_cart.html" title="购物车">购物车<span class="badge pull-right">3</span></a></li>
<li><a href="course.html" title="线上课程">线上课程</a></li>
</ul>
</nav>
</body>
</html>