-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.71 KB
/
index.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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ốp Lưng Thiết Kế</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Trang chủ</a></li>
<li><a href="about.html">Giới thiệu</a></li>
<li><a href="product.html">Sản phẩm</a></li>
<li><a href="contact.html">Liên hệ</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Ốp Lưng Thiết Kế Độc Đáo</h1>
<p>Khám phá bộ sưu tập ốp lưng điện thoại đẹp mắt, bảo vệ điện thoại của bạn một cách thời trang.</p>
</section>
<section class="featured-products">
<h2>Sản phẩm nổi bật</h2>
<div class="product-list">
<div class="product-item">
<img src="images/product1.jpg" alt="Sản phẩm 1">
<p><a href="product.html">Xem chi tiết</a></p>
</div>
<div class="product-item">
<img src="images/product2.jpg" alt="Sản phẩm 2">
<p><a href="product.html">Xem chi tiết</a></p>
</div>
<div class="product-item">
<img src="images/product3.jpg" alt="Sản phẩm 3">
<p><a href="product.html">Xem chi tiết</a></p>
</div>
</div>
</section>
<footer>
<p>© 2024 Ốp Lưng Thiết Kế | Tất cả quyền lợi được bảo vệ</p>
</footer>
</body>
</html>