This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
66 lines (65 loc) · 2.34 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="products.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="head">
<div class="logo">
<a href=""><img src="img/Fudo..png" alt=""></a>
</div>
<div class="menu">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Products</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
<div class="login">
<a href=""><img src="img/Cart.png" alt=""></a>
<button>Log In</button>
<button>Sign Up</button>
</div>
</div>
<div class="banner">
<div class="banner-img">
<img src="img/Rectangle 1372.png" alt="">
</div>
</div>
<div class="body">
<select name="sort" id="sort">
<option value="">All</option>
<option value="breakfast">Breakfast</option>
<option value="lunch">Lunch</option>
<option value="dessert">Dessert</option>
</select>
<div class="products">
</div>
</div>
<div class="footer">
<div class="foot-logo">
<img src="img/Fudo..png" alt="">
</div>
<div class="foot-menu">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Products</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<script src="products.js"></script>
</body>
</html>