-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (36 loc) · 1.21 KB
/
index.html
File metadata and controls
45 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="index.js"></script>
<title>commerceHub</title>
</head>
<body>
<!-- Header => -->
<!-- ======================== -->
<header class="flex items-center m-8 justify-between">
<!-- title -->
<a href="#" class="font-bold text-2xl">commerceHub</a>
<!-- navbar (links) -->
<nav class="flex font-medium pl-28 gap-5">
<a href="#" class="text-[#258CF4FF]">Home</a>
<a href="#">Products</a>
<a href="#">Cart</a>
</nav>
<!-- textbox & icons -->
<div class="flex items-center gap-5">
<input class="border-1 rounded border-gray-300 p-[5px] " type="text"placeholder="Search" />
<i class="fa-solid fa-cart-shopping"></i>
<i class="fa-solid fa-user"></i>
</div>
</header>
<!-- ======================== -->
<!-- main content -->
<main class="container px-10 mx-auto">
<!-- Hero Section -->
<section class="h-64 bg-cover object-cover h-[210px] bg-center rounded-2xl" style="background-image: url('assets/banner.PNG');">
</section>
</main>
</body>
</html>