-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpin-plaques.html
175 lines (161 loc) · 9.2 KB
/
pin-plaques.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fortune Mirror | Products</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/scss" href="styles.scss">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preload" as="image"
href="https://raw.githubusercontent.com/alin5647/fortuneMirror/master/img/greenLogoTransp.png">
<!-- Preloads the company logo -->
<link rel="icon" href="https://raw.githubusercontent.com/alin5647/fortuneMirror/master/img/greenLogoTransp.png"
type="image/png"> <!-- Favicon -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body class="product-body">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<section class="product-page">
<!--Navigation-->
<nav class="navbar top-nav bg-light border-bottom border-dark d-flex justify-content-between">
<a class="navbar-brand d-flex" href="index.html">
<div class="leftMainNav pr-3 border-right border-dark d-flex flex-column">
<img class="company-logo align-top"
src="https://raw.githubusercontent.com/alin5647/fortuneMirror/master/img/greenLogoTransp.png"
alt="Fortune Mirror logo">
<div class="regLogo"><span class="company-year">Since 1978</span> ®</div>
</div>
<div id="company" class="pl-2 d-flex flex-column justify-content-center">
<span id="company-name" class="ml-2">Fortune Mirror</span>
</div>
</a>
<div class="rightMainNav mr-3 text-uppercase">
<label id="openNavIcon" onclick="openNav()">
<i class="fa fa-bars" style="font-size: 4vh;"></i>
</label>
<label id="closeNavIcon" onclick="closeNav()">
<i class="fa fa-times" style="font-size: 5vh;"></i>
</label>
<ul class="navbar-nav d-flex flex-row" id="mobileSideBar">
<li class="nav-item ml-4">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item ml-4 active">
<a class="nav-link active" href="products.html">Products</a>
</li>
<li class="nav-item ml-4">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item mx-4">
<a class="nav-link" id="contact-link"
href="mailto:[email protected]?subject=Product Inquiry">Contact Us</a>
</li>
</ul>
</div>
<script>
function openNav() {
document.getElementById("mobileSideBar").style.width = "80vw";
document.getElementById("openNavIcon").style.display = "none";
document.getElementById("closeNavIcon").style.display = "inline";
}
function closeNav() {
document.getElementById("mobileSideBar").style.width = "0vw";
document.getElementById("openNavIcon").style.display = "inline";
document.getElementById("closeNavIcon").style.display = "none";
}
</script>
</nav>
<!-- Product Page Body -->
<div class="container-fluid top-offset">
<div class="row product-content"> <!-- EXAMPLE -->
<a id="cantebury" class="href-offset"></a>
<div class="col-2 side-nav bg-dark px-0">
<div class="side-nav-wrapper">
<div class="side-nav-descriptor py-3">
<button style="cursor: pointer;" onclick="window.history.back();">
<h2>Example</h2>
</button>
</div>
<nav id="side-nav-scrollspy" class="nav side-nav-bar flex-column justify-content-center">
<a class="nav-link" href="../awards/tp09-05.html">TP09-05</a>
<a class="nav-link" href="#">TP-02V</a>
<a class="nav-link active" href="#cantebury">Cantebury</a>
<a class="nav-link" href="#">Arundel</a>
</nav>
</div>
</div>
<div class="col-10 px-0">
<a class="anchor-offset">
<div class="grid-wrapper d-flex pl-3">
<div class="container-fluid d-flex flex-column justify-content-center">
<div class="row pt-2">
<div class="col mb-3">
<div class="card" onclick="location.href='#cantebury'">
<img src="img/comingSoon.jpg"
class="card-img-top" alt="image-placeholder">
<div class="card-body">
<h5 class="card-title">Clipped Rectangle</h5>
</div>
</div>
</div>
<div class="col mb-3">
<div class="card" onclick="location.href='awards/diamond.html'">
<img src="img/comingSoon.jpg"
class="card-img-top" alt="image-placeholder">
<div class="card-body">
<h5 class="card-title">Diamond</h5>
</div>
</div>
</div>
<div class="col mb-3">
<div class="card" onclick="location.href='#cantebury'">
<img src="img/comingSoon.jpg"
class="card-img-top" alt="image-placeholder">
<div class="card-body">
<h5 class="card-title">Rectangle - Horizontal</h5>
</div>
</div>
</div>
<div class="col mb-3">
<div class="card" onclick="location.href='#cantebury'">
<img src="img/comingSoon.jpg"
class="card-img-top" alt="image-placeholder">
<div class="card-body">
<h5 class="card-title">Rectangle - Vertical</h5>
</div>
</div>
</div>
<div class="col mb-3">
<div class="card" onclick="location.href='#cantebury'">
<img src="img/comingSoon.jpg"
class="card-img-top" alt="image-placeholder">
<div class="card-body">
<h5 class="card-title">Slanted Rectangle</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
</body>
</html>