-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.HTML
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathcontact.HTML
File metadata and controls
42 lines (42 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<title>联系我们</title>
<!-- 加载 Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>联系我们</h1>
</header>
<nav>
<a href="index.html">首页</a>
<a href="about.html">关于我们</a>
<a href="products.html">我们的产品</a>
<a href="contact.html">联系我们</a>
</nav>
<section>
<h2>联系方式</h2>
<p>如果您有任何问题或需求,请随时联系我们。我们随时准备为您提供帮助和支持。</p>
<ul>
<li>电话:+86 151-8982-9393</li>
<li>电子邮件:zcash@foxmail.com</li>
<li>地址:219 Ning Liu Road, Nanjing 210044, China</li>
</ul>
<form>
<h2>发送消息</h2>
<label for="name">姓名</label>
<input type="text" id="name" name="name">
<label for="email">电子邮件</label>
<input type="email" id="email" name="email">
<label for="message">消息</label>
<textarea id="message" name="message"></textarea>
<input type="submit" value="发送">
</form>
</section>
<footer>
<p>版权所有 © 2023 我们的公司</p>
</footer>
</body>
</html>