-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgifts.html
45 lines (45 loc) · 1.52 KB
/
gifts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>禮物清單</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="page2">
<h2>這是你的禮物清單</h2>
<div class="gift-container">
<div class="gift" id="gift1">
<img src="AG WHP01K.jpg" alt="AG耳機">
<h3>好想聽見你</h3>
<p>
獎品資訊:<br>
<span class="highlight">AG WHP01K</span><br>
高解析音質、極致降噪,隨時享受無壓力的音樂體驗,讓耳朵沉浸在純粹之中!
</p>
</div>
<div class="gift" id="gift2">
<img src="car.jpg" alt="庫洛米托車+露營動力線">
<h3>一起去旅行</h3>
<p>
獎品資訊:<br>
<span class="highlight">庫洛米折疊托車+AdamOutdoor動力線</span><br>
酷洛米限定設計,輕便托車加實用延長線,旅行露營必備的貼心小助手!
</p>
</div>
<div class="gift" id="gift3">
<img src="清淨機.jpg" alt="空氣清淨機">
<h3>天天好清新</h3>
<p>
獎品資訊:<br>
<span class="highlight">AIRbox G2 方塊舒2代</span><br>
0耗材設計,強效除甲醛去異味,殺病毒抗過敏,打造健康清新室內空間
</p>
</div>
</div>
<button id="drawButton">抽獎</button>
</div>
<script src="script.js"></script>
</body>
</html>