-
Notifications
You must be signed in to change notification settings - Fork 0
/
product2.html
37 lines (37 loc) · 1.11 KB
/
product2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products - Phone Case Studio 2</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header>
<div class="logo">Phone Case Studio 2</div>
<nav>
<a href="index2.html">Home</a>
<a href="about2.html">About</a>
<a href="product2.html">Products</a>
<a href="contact2.html">Contact</a>
</nav>
</header>
<section class="content">
<h1>Our Products</h1>
<div class="product-grid">
<div class="product">
<img src="case1.jpg" alt="Stylish Case">
<h3>Stylish Case</h3>
</div>
<div class="product">
<img src="case2.jpg" alt="Protective Case">
<h3>Protective Case</h3>
</div>
<div class="product">
<img src="case3.jpg" alt="Custom Case">
<h3>Custom Case</h3>
</div>
</div>
</section>
</body>
</html>