-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday-menu.html
54 lines (51 loc) · 1.59 KB
/
day-menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>新奥-每日菜谱</title>
<!--公共js-->
<script src="js/resize.js"></script>
<!--公共css-->
<link rel="stylesheet" href="css/common.css">
<!--私有css-->
<link rel="stylesheet" href="css/day-menu.css">
<!--公共js-->
<script src="js/jquery.min.js"></script>
<script src="js/common.js"></script>
<!--私有js-->
<script src="js/day-menu.js"></script>
</head>
<body>
<header>
<a href="" class="header-back"><img src="images/back-arrow.png" alt=""></a>
<div class="header-title">每日菜谱</div>
<a href="index.html" class="header-img"><img src="images/logo-index.png" alt=""></a>
</header>
<div class="menu-content">
<div class="menu-wrap">
<div class="menu-list clearfix">
<a href="day-detail.html">
<p>科二食堂菜谱</p>
<p><span>发布时间:</span>2017-02-04</p>
</a>
</div>
<div class="menu-list clearfix">
<a href="day-detail.html">
<p>科二食堂菜谱</p>
<p><span>发布时间:</span>2017-02-04</p>
</a>
</div>
<div class="menu-list clearfix">
<a href="day-detail.html">
<p>科二食堂菜谱</p>
<p><span>发布时间:</span>2017-02-04</p>
</a>
</div>
</div>
<div class="read-history">
<a href="day-detail.html">查看历史菜谱</a>
</div>
</div>
</body>
</html>