-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
50 lines (39 loc) · 1.87 KB
/
index1.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
<!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>My Cart</title>
<link rel="stylesheet" href="./css/style.css">
<link href="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
</head>
<body class="select">
<header class="first-header" id="head">
<img src="./img/logo/BookIsqh.png" alt="" class="logo">
<input type="text" placeholder="Search here" style="font-size:1.5rem ;" class="input">
<div class="cart-plus" style="margin-top: 1.5em;" >
<i class='fa fa-cart-plus'><span class="num">0</span></i>
</div>
<div class="search" ><i class='fa fa-search' style="font-size: 19px;margin-left: -6.7em;"></i></div>
<!-- <div class="button">
<button class="button-1" id="btn" style="color:white;"><a href="./Login.htm" style="text-decoration:none ;">Login</a></button>
</div> -->
</header>
<div class="products-container">
<div class="products-header">
<h5 class="products-title">PRODUCT</h5>
<h5 class="price">PRICE</h5>
<h5 class="quantity">QUANTITY</h5>
<h5 class="total">TOTAL</h5>
</div>
<div class="products">
</div>
</div>
<script src="./JavaScript/js.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
</body>
</html>