-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
35 lines (32 loc) · 1.17 KB
/
order.html
File metadata and controls
35 lines (32 loc) · 1.17 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
<!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>
<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>
<header id="header" class="" >
<a href="index.html" title="" id="homepage">首页</a>
<a class="pull-right" href="personal.html" title=""><img src="img/personal.png" height="32" width="36" alt=""></a>
</header><!-- /header -->
<div class="container">
<div class="well well-sm">
我的第一个订单
<p>里面什么都偶</p>
继续码
</div>
</div>
</body>
</html>