-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (47 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steampunk Motel - About</title>
<link rel="stylesheet" href="style/style.min.css">
<script src="./js/app.js" type="module" defer></script>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<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=DM+Sans:opsz,wght@9..40,300&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header-content">
<div class="header-logo">
<a href="index.html"><h1 class="logo">Steampunk Motel</h1></a>
</div>
<nav class="header-navigation">
<a href="about.html" class="link-button">About</a>
<div id="dropdown" class="dropdown">
<a href="#" id="yourCart" class="link-button">Your Cart</a>
<div id="cartContent" class="dropdown-content">
<button class="clear-cart-button">Clear Cart</button>
<button id="completeOrder" class="complete-order-button">Complete Order</button>
</div>
</div>
</nav>
</div>
</header>
<main>
<div class="responsive-container">
<h2>Test area...</h2>
<p>This site is a dynamic test area for javascript. A beginners way into understanding how its done.</p>
<div class="grid-order" id="productContainer"></div>
</div>
<div class="responsive-container"></div>
<footer>
<h3>By Steampunk Motel</h3>
<a href='https://github.com/codebatine' target="_blank" rel="noopener noreferrer">GitHub</a> |
<a href='https://www.linkedin.com/in/sanjindumisic' target="_blank" rel="noopener noreferrer">LinkedIn</a> |
<a href='https://www.youtube.com/sanjindumisic' target="_blank" rel="noopener noreferrer">YouTube</a>
</footer>
</main>
</body>
</html>