-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavorites.html
More file actions
65 lines (45 loc) · 2 KB
/
favorites.html
File metadata and controls
65 lines (45 loc) · 2 KB
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
<!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>Group Project 1</title>
<link rel="stylesheet" href="favorites.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<body>
<script src="slider.js"></script>
<header class="header">
<div class="topnav">
<a class="brand-header" href="home.html">
<img id="logo" src="Assets\Icons\Logo.png" alt="Dealership Logo" width="90" height="120">
</a>
<h1>Dreads & Deals Auto</h1>
</div>
<div class="hamburger">
<a href="javascript:void(0);" onclick="menu()">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</a>
<div id="myLinks">
<a href="favorites.html">Favorites</a>
<a href="checkout.html">Checkout</a>
</div>
</div>
</header>
<main> <!--This main area will contain a list of favorite cars that were selected on the home page.
Users will be able to view their favorites list, and add cars to the cart if they choose to.-->
</main>
<footer class="footer">
<img id="footer-icons" src="Assets\Icons\Socials.png" width="75" height="75"alt="Socials">
<p class="copyright">Dreads And Deals Auto LLC.- 2024 All Rights Reserved. ©User Agreement
|Financial and Other Privacy Notices|Do Not Sell My Info
|Code of Conduct|Responsible Disclosure|Accessibility</p>
</footer>
<script src="slider.js"></script>
</body>
</html>