-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 1.67 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>微信在线答疑平台</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<link rel="stylesheet" href="css/weuix.min.css"/>
<script src="js/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<body ontouchstart style="background-color: #f8f8f8;">
<div class="page-hd">
<h1 class="page-hd-title">
课程列表
</h1>
<p class="page-hd-desc">查看对应课程分类的相关问题</p>
</div>
<div class="page-bd">
<h1 class="page-hd-title">
</h1>
<div class="weui_grids grids-small" id="id_course_grid">
</div>
</div>
<a class="weui_cell" href="./course_category_list.html" style="margin-bottom: 50px;">
更多课程分类
</a>
<div class="weui_tabbar tab-bottom">
<a href="index.html" class="weui_tabbar_item weui_bar_item_on">
<div class="weui_tabbar_icon">
<i class="icon icon-27"></i>
</div>
<p class="weui_tabbar_label">首页</p>
</a>
<a href="qahall.html" class="weui_tabbar_item">
<div class="weui_tabbar_icon">
<i class="icon icon-88"></i>
</div>
<p class="weui_tabbar_label">答疑大厅</p>
</a>
<a href="good_topic.html" class="weui_tabbar_item">
<div class="weui_tabbar_icon">
<i class="icon icon-4"></i>
</div>
<p class="weui_tabbar_label">发现</p>
</a>
<a href="./php/me.php" class="weui_tabbar_item">
<div class="weui_tabbar_icon">
<i class="icon icon-85"></i>
</div>
<p class="weui_tabbar_label">我</p>
</a>
</div>
</body>
</html>