-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 2.58 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
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop Cart</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="css/comman.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<div class="homePage">
<nav id="header">
<!---header -->
<div class="container">
<div class="row">
<div class="header-wrapper d-flex justify-content-between">
<div class="logo d-inline-block">
<a href="index.html" class="text-decoration-none">Shop Cart</a>
</div>
<div class="user-actions d-flex flex-row">
<a href="cart.html">Cart</a>
<div class="user-intro" id="userIntro">Hi User</div>
<div class="logout-btn" id="logoutBtn">logout</div>
</div>
</div>
</div>
</div>
</nav>
<!---main content -->
<div class="container">
<div class="row">
<h2 class="home-title text-center">Welcome to Shop Cart</h2>
<div class="category-list d-flex flex-row justify-content-between align-items-center" id="categoryList">
<!--Add to do category -->
<div class=" category-item d-flex justify-content-center align-items-center">
<a href="productList.html"> All products</a>
</div>
</div>
<div class="category-title text-center">
Select a category to start shopping
</div>
</div>
</div>
<footer>
This is footer
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy"
crossorigin="anonymous"></script>
<script src="js/index.js">Javascript</script>
</body>
</html>