-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (29 loc) · 946 Bytes
/
contact.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>联系我们</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>联系我们</h1>
</header>
<section>
<h2>联系方式</h2>
<p>电话:+86 123 4567 890</p>
<p>地址:北京市某某区某某街道123号</p>
<h2>在线联系表单</h2>
<form action="submit_form.php" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name" required>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required>
<label for="message">留言:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">提交</button>
</form>
</section>
</body>
</html>