-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (54 loc) · 2.1 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
</head>
<body>
<div class="header_main">
<!-- Hamburger Icon for Mobile View -->
<div class="dropdown">
<button class="dropdown-toggle" id="menu-toggle">☰</button>
<div class="dropdown-menu" id="menu">
<a class="option" href="index.html">Home</a>
<a class="option" href="about.html">About</a>
<a class="option" href="store.html">Store</a>
<a class="option" href="customOrderForm.html"
>Custom Order</a
>
<a class="option" href="contact.html">Contact</a>
<a class="option" href="cart.html">Cart</a>
</div>
</div>
<div class="header-left">
<div class="navbar">
<a class="option" href="index.html">Home</a>
<a class="option" href="about.html">About</a>
<a class="option" href="store.html">Store</a>
</div>
</div>
<div class="header-mid">
<header>Olive's Closet</header>
<div class="header_logo">
<img
class="logo"
src="images/olives-closet-logo.png"
alt="Olive's Closet Logo"
/>
</div>
</div>
<div class="header-right">
<div class="navbar">
<a class="option" href="customOrderForm.html"
>Custom Order</a
>
<a class="option" href="contact.html">Contact</a>
<a class="option" href="cart.html">Cart</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>