-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (63 loc) · 2.07 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Best Bought Website</title>
<!--This is for settings cog-wheel icon-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./resources/index.js"></script>
<link rel="stylesheet" href="./resources/index.css">
</head>
<body>
<!-- Initial Full-Screen Section -->
<section class="initial-screen">
<div class="content">
<h1>Welcome to Our Website</h1>
<p>Scroll down to discover more</p>
</div>
</section>
<!-- Main Content (including Navigation Bar) -->
<div class="main-content">
<!-- Navigation Bar -->
<nav>
<div class="navbar">
<div class="navbar-brand">
<a href="index.html">
<img src="./resources/logo.png" alt="Brand Logo" style="height: 75px;">
</a>
</div>
<ul class="nav-items">
<li><a href="./search/search.html">Search</a></li>
</ul>
<div class="navbar-actions">
<!-- Settings Button -->
<button class="settings-btn">
<i class="fa fa-cog" aria-hidden="true"></i>
</button>
</div>
</div>
</nav>
<!-- Rest of the main content goes here -->
<p>.</p>
<div class="container">
<div class="left-half">
<div class="centered-heading">
<h1>Trending Products</h1>
</div>
<div id = "trending"></div>
</div>
</div>
</div>
<!-- Settings Panel -->
<div id="settings-panel" class="settings-panel">
<!-- Close Button -->
<button id="close-settings" class="close-settings">×</button>
<!-- Content for settings -->
<p>Dark/Light Mode:</p>
<div id="theme-btn" class="far fa-moon"></div>
<!-- Add more settings options here (already added dark mode) -->
</div>
</body>
</html>