-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
166 lines (164 loc) · 5.25 KB
/
product.html
File metadata and controls
166 lines (164 loc) · 5.25 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,user-scalable=no, initial-scale=1.0, minimum-scale=1, maximum-scale=1"
/>
<title>Products</title>
<link rel="stylesheet" href="./styles/product-Page.css" />
</head>
<body>
<header>
<img class="bar" src="./image/dehaze-24px.png" alt="" />
<div class="logo-header">
<img class="only-pic" src="./image/logo-1000x1000.svg" alt="" />
<img class="logo-text" src="./image/logotype-lg-dark.svg" alt="" />
<h1>Sweetaste Dessert Shop</h1>
</div>
<div class="navbar">
<ul>
<li><a href="./home.html">首頁</a></li>
<li><a href="#">甜點</a></li>
<li><a href="#">登入</a></li>
</ul>
<a href="#"
><img class="cart" src="./image/shopping_cart.png" alt=""
/></a>
</div>
</header>
<img class="banner-pic" src="./image/banner.png" alt="" />
<main>
<ul class="menu">
<li>甜點類別</li>
<li>所有甜點(48)</li>
<li>本日精選(10)</li>
<li>人氣推薦(26)</li>
<li>新品上市(12)</li>
</ul>
<section class="products">
<ul>
<li class="product-1">
<a href="#" class="pic one">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
<li class="product-2">
<a href="#" class="pic two">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
<li class="product-3">
<a href="#" class="pic three">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
<li class="product-1">
<a href="#" class="pic four">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
<li class="product-1">
<a href="#" class="pic five">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
<li class="product-1">
<a href="#" class="pic six">
<p>本日精選</p>
<img src="./image/favorite_border.png" alt="" />
</a>
<div>
<a href="#">焦糖馬卡龍</a>
<p>NT$ 450</p>
</div>
<button type="button">加入購物車</button>
</li>
</ul>
</section>
</main>
<div class="page-num-container">
<ul class="page-number">
<li><img src="./image/arrow_left.png" alt=""></li>
<li>1</li>
<li>2</li>
<li>3</li>
<li><img src="./image/arrow_right.png" alt=""></li>
</ul>
</div>
<section class="sub">
<div class="title">
<img class="only-pic-mail" src="./image/logo-light.svg" alt="" />
<p>訂閱你我的甜蜜郵件</p>
</div>
<div class="mail-addr">
<label for="mail">
<img src="./image/mail-24px.png" alt="" />
</label>
<input type="email" name="mail" />
<button class="btn" type="submit">
<img src="./image/arrow_forward-24px.png" alt="" />
</button>
</div>
</section>
<footer>
<ul class="footer-left">
<a href="#">
<img class="logo-text" src="./image/logotype-lg-dark.svg" alt="" />
</a>
<li class="contact">
<ul>
<li>07-1234-5678</li>
<li>sweetaste@email.com</li>
<li>800 高雄市新興區幸福路 520 號</li>
</ul>
</li>
<li>
<ul class="sns">
<li>
<a href="#"><img src="./image/ic-line@.svg" alt="" /></a>
</li>
<li>
<a href="#"><img src="./image/ic-facebook.svg" alt="" /></a>
</li>
</ul>
</li>
</ul>
<div class="copyright">
<img class="hide" src="./image/sm-今天是個吃甜點的好日子.svg" alt="" />
<p>© 2018 Sweetaste* All Rights Reserved</p>
</div>
</footer>
</body>
</html>