-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtributes.html
34 lines (34 loc) · 998 Bytes
/
tributes.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>追思留言 - 祥安生命</title>
<link rel="stylesheet" href="style.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header>
<img src="logo.jpg" alt="Logo" id="logo">
<h1>祥安生命禮儀公司</h1>
<nav>
<a href="index.html">主页</a>
<a href="announcement.html">提交公告</a>
<a href="photos.html">追思照片</a>
<a href="contact.html">联系我们</a>
</nav>
</header>
<main>
<section id="tribute-section">
<h2>追思留言区</h2>
<form id="tribute-form">
<!-- 留言表单内容 -->
</form>
<div id="tributes"></div>
</section>
</main>
<footer>
<p>© 2024 祥安生命禮儀公司</p>
</footer>
</body>
</html>