-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlienhe.html
More file actions
55 lines (45 loc) · 1.32 KB
/
Copy pathlienhe.html
File metadata and controls
55 lines (45 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!-- lienhe.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Liên hệ - Cửa hàng ABC</title>
</head>
<body>
<header>
<h1>Cửa hàng ABC</h1>
<nav>
<a href="index.html">Trang chủ</a> |
<a href="sanpham.html">Sản phẩm</a> |
<a href="lienhe.html">Liên hệ</a>
</nav>
</header>
<section>
<h2>Thông tin liên hệ</h2>
<p>Địa chỉ: 123 Đường ABC, TP.HCM</p>
<p>Email: abcstore@email.com</p>
<p>Điện thoại: 0123 456 789</p>
<h2>Form đặt hàng</h2>
<form>
<label>Họ và tên:</label><br>
<input type="text" name="hoten"><br><br>
<label>Địa chỉ:</label><br>
<input type="text" name="diachi"><br><br>
<label>Email:</label><br>
<input type="email" name="email"><br><br>
<label>Số điện thoại:</label><br>
<input type="tel" name="dienthoai"><br><br>
<label>Tên món đặt:</label><br>
<input type="text" name="mon"><br><br>
<label>Số lượng:</label><br>
<input type="number" name="soluong"><br><br>
<label>Ghi chú:</label><br>
<textarea name="ghichu"></textarea><br><br>
<input type="submit" value="Gửi đơn hàng">
</form>
</section>
<footer>
<p>© 2025 Cửa hàng ABC</p>
</footer>
</body>
</html>