-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduct.html
54 lines (53 loc) · 3.65 KB
/
Product.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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.tailwindcss.com"></script>
<script defer type="module" src="Product.js"></script>
<title>Document</title>
</head>
<body class="bg-slate-300">
<div class="flex justify-center items-center flex-row w-full gap-3 mt-[20px] fixed z-10 left-0">
<div class="w-[30%] flex gap-10 opacity-90 h-12 bg-white rounded-3xl items-center py-2 px-[30px] text-black drop-shadow-lg">
<a href="index.html" class="hover:text-purple-400">Home</a>
<a href="#" class="hover:text-purple-400">About</a>
<a href="/E-commerce/Product.html" class="hover:text-purple-400">Product</a>
<a href="#" class="hover:text-purple-400">Contact</a>
</div>
<div class="w-[200px] h-12 opacity-90 bg-white rounded-3xl hover:border-blue-300 border-2 py-2 flex justify-center items-center drop-shadow-lg relative">
<i class="fa-solid search-btn fa-magnifying-glass absolute right-3"></i>
<input type="text" class="search outline-none">
</div>
<button class="shopingCart w-12 h-12 opacity-90 bg-white rounded-3xl py-2 flex justify-center drop-shadow-lg items-center">
<a href="/E-commerce/addToCart.html">
<i class="dos fa-solid add fa-cart-shopping"></i>
</a>
</button>
</div>
<div class="w-full h-[100%] flex items-center justify-center">
<h1 class="text-[30px] mt-[100px]">All Products</h1>
</div>
<div class="mt-10 flex flex-col justify-center items-center">
<div class="cardContainer h-[500px] w-[80%] flex justify-center items-center flex-wrap">
</div>
</div>
<!-- <template class="clone">as a container to hold some HTML content hidden from the user when the page loads. The content inside <template> can be rendered later with a JavaScript.
<div class="canId min-h-[400px] bg-white rounded-[20px] mt-10 mx-2 w-[300px] shadow-lg p-3 relative" id="">
<img class="img w-full h-[250px] rounded-[20px]" src="" alt="image">
<h1 class="name mt-2 w-[200px] max-h-[50px] overflow-y-auto">phone</h1>
<p class="des text-[15px] text-gray-500">Smartwatch with a 1.3-inch AMOLED display, water-resistant design, fitness tracking features, and a stylish silver color.</p>
<p class="d first:text-[15px] text-gray-500 my-3">Total stocks avaible: <span class="stock text-black"></span></p>
<div class="quantity flex items-center my-5 w-12">
<button class="dec bg-gray-200 text-gray-600 rounded-l-md px-1 py-1 border border-r-0 border-gray-400 focus:outline-none">-</button>
<input type="number" readonly class=" input border-t border-b border-gray-400 px-3 py-1 text-gray-700 w-[50px]" value="1">
<button class="inc bg-gray-200 text-gray-600 rounded-r-md px-1 py-1 border border-l-0 border-gray-400 focus:outline-none">+</button>
</div>
<p class="price">$1500.00</p>
<div class="add h-12 w-12 rounded-[30px] flex items-center justify-center bg-black absolute right-2 bottom-2 "><i class="text-white fa-solid fa-plus"></i></div>
</div>
</template> -->
</body>
</html>