-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorder.html
More file actions
71 lines (56 loc) · 2.25 KB
/
order.html
File metadata and controls
71 lines (56 loc) · 2.25 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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<!-- NEED TO ADD GOOGLE ANAYLTICS HERE -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fits Footwear | Custom Made Sandals</title>
<!-- NEED TO FILL IN THIS INFORMTION FOR SEO -->
<meta name="theme-color" content="">
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:description" content="">
<meta property="og:image" content="">
<!-- NEED TO ADD A FAVICON -->
<!-- Iconify -->
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body class="tealBkgd">
<header>
<nav class="navBar">
<a href="" class="logo"></a>
<ul class="navLinks" id="navLinks">
<li><a href="./index.html#home">Home</a></li>
<li><a href="./index.html#about">About</a></li>
<li><a href="./order.html">Order</a></li>
<li><a href="./index.html#contact">Contact</a></li>
</ul>
<div class="mobileMenu" id="mobileMenu" aria-label="Menu">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<section class="wrapper orderMain">
<h1 class="orderh1">Custom Made Sandals</h1>
<a href="./orderMen.html" class="genderBtn">Men</a>
<a href="./orderWomen.html" class="genderBtn">Women</a>
<div class="preview">
<video loop muted controls>
<source src="./assets/Product Video.mp4" type="video/mp4">
</video>
<!-- <img src="./assets/fits_CreateYourOwn.png" alt=""> -->
</div>
</section>
</main>
<footer>
</footer>
<script src='https://code.jquery.com/jquery-3.5.1.min.js'></script>
<script src="script.js"></script>
</body>
</html>