-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlienhe.html
129 lines (114 loc) · 4.3 KB
/
lienhe.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- favicon -->
<link rel="shortcut icon" href="./assets/img/favicon.ico" type="image/vnd.microsoft.icon">
<!-- style -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- font awesome local-->
<!-- <link rel="stylesheet" href="./assets/fontawesome/css/all.css"> -->
<!-- font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.css">
<title>Liên hệ</title>
</head>
<body>
<header>
<img src="./assets/img/logo.png" alt="Logo" id="logo">
<img src="./assets/img/header-img1.png" alt="" class="header-img header-img1">
<img src="./assets/img/header-img2.png" alt="" class="header-img header-img2">
<img src="./assets/img/header-img3.png" alt="" class="header-img header-img3">
<nav>
<div>
<a href="./index.html">Trang Chủ</a>
<a href="./gioithieu.html">Giới Thiệu</a>
<a href="./sanpham.html">Sản Phẩm</a>
<a href="./tintuc.html">Tin Tức</a>
<a href="./dangnhap.html">Đăng Nhập</a>
<a href="./dangky.html">Đăng Ký</a>
<a href="./lienhe.html">Liên Hệ</a>
</div>
<div>
<form action="timkiem.html" method="GET" class="search-form">
<input type="text" placeholder="Nhập nội dung cần tìm...">
<i class="search-btn nav-search-icon fa-solid fa-search" title="Tìm kiếm"></i>
</form>
<i class="nav-cart-icon fa-solid fa-shopping-cart" title="Đến trang đơn hàng"></i>
</div>
</nav>
</header>
<main class="main-one-col">
<h1>Liên hệ</h1>
<p>
<img src="./assets/img/lienhe/check-in.png" alt="Check in" class="location-icon">
<strong>Địa chỉ: 0123, Tòa Nhà ABC, TP. Cần Thơ</strong>
Nếu bạn có góp ý, vui lòng liên hệ bằng thư điện tử hoặc sử dụng biểu mẫu bên dưới. Xin cảm ơn.
</p>
<h1>Góp ý</h1>
<form action="" method="post" enctype="application/x-www-form-urlencoded" class="contact-form">
<table class="mx-auto">
<tr>
<td>
<label for="name">
<span class="label-icon"><i class="fa-regular fa-user"></i></span>
</label>
</td>
<td>
<input type="text" name="name" id="name" placeholder="Vui lòng nhập họ tên của bạn">
</td>
</tr>
<tr>
<td>
<label for="email">
<span class="label-icon"><i class="fa-regular fa-envelope"></i></span>
</label>
</td>
<td>
<input type="text" name="email" id="email" placeholder="Vui lòng nhập địa chỉ email">
</td>
</tr>
<tr>
<td>
<label for="concept">
<span class="label-icon"><i class="fa-solid fa-list-ul"></i></span>
</label>
</td>
<td>
<select name="concept" id="concept" size="1">
<option value="option-1">Về Sản phẩm/ Dịch vụ</option>
<option value="option-2">Về Ưu đãi thành viên</option>
<option value="option-3">Về Tin Tuyển Dụng</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="content">
<span class="label-icon"><i class="fa-regular fa-note-sticky"></i></span>
</label>
</td>
<td colspan="2">
<textarea name="content" id="content" cols="50" rows="7" placeholder="Nội dung cần liên hệ"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;">
<input type="submit" value="Gửi">
</td>
</tr>
</table>
</form>
</main>
<footer>
<p>
© 2021 Bản quyền thuộc về FreeezeVN.
<a href=""><i class="fa-brands fa-facebook-f"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-pinterest"></i></a>
</p>
<a href="#logo"><img src="./assets/img/top.png" alt="Go to top" class="to-top"></a>
</footer>
<script src="./assets/js/main.js"></script>
</body>
</html>