-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvitation.html
49 lines (45 loc) · 1.72 KB
/
invitation.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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>敬邀您</title>
<link rel="stylesheet" href="invitation.css">
<script src="invitation.js" defer></script>
</head>
<body>
<header>
<img src="image/logo.png" alt="祥安生命有限公司 Logo" class="logo">
</header>
<main>
<section id="invitation-section">
<div id="photo-container">
<img id="main-photo" src="" alt="主要照片">
<div id="invitation-overlay">
<p>敬邀您</p>
<a id="go-to-obituary" href="obituary.html">
<button>點選我進入訃聞</button>
</a>
</div>
</div>
</section>
<section id="service-details">
<h2>承辦禮儀公司</h2>
<p>祥安生命有限公司</p>
<p>24H聯絡電話:<a href="tel:+886978583699">0978-585-3699</a></p>
<p>Line 聯絡:<a href="https://line.me/ti/p/@your-line-id" target="_blank">點此聯絡</a></p>
</section>
</main>
<footer>
<p>© 2024 祥安生命有限公司. 版權所有.</p>
</footer>
<audio id="background-music" preload="auto" loop>
<source src="" type="audio/mp3">
您的瀏覽器不支持音頻元素。
</audio>
<div id="music-control">
<button id="play-music" aria-label="播放音樂" style="background: url('images/sound-on.png');">🔊</button>
<button id="stop-music" aria-label="停止音樂" style="display: none; background: url('images/sound-off.png');">🔇</button>
</div>
</body>
</html>