-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.html
More file actions
25 lines (23 loc) · 865 Bytes
/
course.html
File metadata and controls
25 lines (23 loc) · 865 Bytes
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
<!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>
<div class="container">
</div>
</body>
</html>