-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 2.56 KB
/
index.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
<!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">
<!-- BOOTSTRAP CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- FONT AWESOME CSS
https://www.w3schools.com/icons/fontawesome_icons_intro.asp -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- PROJECT STYLES -->
<link rel="stylesheet" href="./assets/styles/main.css">
<title>Black Excellence Reference</title>
</head>
<body>
<div class="container mt-2 mb-5">
<!-- SHOPPING CART -->
<div id="cart" class="d-flex justify-content-end">
<div>
<h4 class="text-white text-center"><i class="fa fa-shopping-cart" style="font-size:30px;color:rgb(185, 73, 185)"></i> $<span id="cartTotal">0.00</span><br />
</h4>
<span id="includes-free" class="text-white small"></span>
</div>
</div>
<!-- LOGO -->
<div class="logo"><img src="./assets/images/ber.png" /></div>
<!-- CONTAINER FOR WHERE THE MAGIC WILL HAPPEN -->
<div id="methodRow" class="methodRow">
<!-- SEARCH INPUT -->
<div class="form-floating mb-3">
<input type="text" class="form-control" id="searchInput" placeholder="SEARCH">
<label for="searchInput">Search</label>
</div>
<!-- BUTTON ROW -->
<div id="btnRow" class="d-flex justify-content-between mb-3 btnRow">
<button id="free" class="btn btn-success w-100 m-1">FREE</button>
<button id="cartFilter" class="btn btn-light w-100 m-1">WISHLIST</button>
<button id="books" class="btn btn-light w-100 m-1">BOOKS</button>
<button id="productList" class="btn btn-light w-100 m-1">PRODUCT LIST</button>
<button id="clearFilter" class="btn btn-info w-100 m-1">CLEAR FILTER</button>
</div>
</div>
<!-- CARDS DIV -->
<div id="cards" class="d-flex flex-wrap justify-content-center">
<!-- CARDS WILL RENDER HERE -->
</div>
</div>
<!-- BOOTSTRAP SCRIPTS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- PROJECT SCRIPTS -->
<script type="module" src="./scripts/main.js"></script>
</body>
</html>