-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>年夜饭</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta charset="UTF-8">
<meta name="description" content="Chinese new year meal menu">
<meta name="author" content="Cliff Yang">
</head>
<body>
<div class="background show-mobile">
<div class="content">
<h3><b>年夜饭菜单</b></h3>
<p>大家春节快乐呀!在这里给大家奉上这次年夜饭的菜单,我尽量做的时候不翻车,此外还有一两个菜正在研发中。<br>最终菜单以活动出现的菜为准。</p>
<br>
<div class="menu-container">
<img src="res/menu-bg.png" style="width: 550px;">
<div class="menu-text">
<h4 style="padding-top: 12px; font-size: 22px;"><b>菜单</b></h4>
<p>蚝油生菜</p>
<p>炒豆腐丝</p>
<p>干煸花菜</p>
<p>西红柿炒鸡蛋</p>
<p>红烧肉</p>
<p>炒鱿鱼</p>
<p>蒜蓉粉丝蒸海鲜</p>
<p>烤羊肉</p>
<p>回锅肉</p>
<p>葱油饼</p>
</div>
</div>
</div>
</div>
<div class="background hide-mobile">
<div class="content">
<h3><b>年夜饭菜单</b></h3>
<p>大家春节快乐呀!在这里给大家奉上这次年夜饭的菜单,我尽量做的时候不翻车,此外还有一两个菜正在研发中。<br>最终菜单以活动出现的菜为准。</p>
<br>
<div class="menu-container">
<img src="res/menu-bg.png" style="width: 450px;">
<div class="menu-text">
<h4 style="padding-top: 0px;"><b>菜单</b></h4>
<p>蚝油生菜</p>
<p>炒豆腐丝</p>
<p>干煸花菜</p>
<p>西红柿炒鸡蛋</p>
<p>红烧肉</p>
<p>炒鱿鱼</p>
<p>蒜蓉粉丝蒸海鲜</p>
<p>烤羊肉</p>
<p>回锅肉</p>
<p>葱油饼</p>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
<canvas id="canvas-mobile"></canvas>
<script src="./fireworks.js"></script>
</body>
</html>