-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathselect_frames.html
More file actions
104 lines (88 loc) · 3.4 KB
/
select_frames.html
File metadata and controls
104 lines (88 loc) · 3.4 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
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
<!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">
<!-- SITE ICON -->
<link rel="icon" href="./images/logo/Gallery-icon.png" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="select_frames.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="./select_frames.js"></script>
<title>Frames</title>
</head>
<body>
<!-- Header -->
<div class="container-fluid header">
<!-- Logo -->
<div class="row">
<div class="col-md-9" id="logo">
<h5>Frames</h5>
</div>
<!-- Menu -->
<div class="col-md-3 menu">
<ul id="menu">
<li>About</li>
<li>Login</li>
<li>Signup</li>
</ul>
</div>
</div>
</div>
<p id="heading"> Pick a Frame</p>
<div class="first-column">
<div class="frameholder frame1">
<div class="frame1"></div>
<div class="price frameprice"> Price: Ksh 3,200 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame2">
<div class="frame2"></div>
<div class="price frameprice"> Price: Ksh 12,000 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame3">
<div class="frame3"></div>
<div class="price frameprice"> Price: Ksh 6,600 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame4">
<div class="frame4"></div>
<div class="price frameprice"> Price: Ksh 2,200 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
</div>
<div class="second-column">
<div class="frameholder frame14">
<div class="frame14"></div>
<div class="price frameprice"> Price: Ksh 8,200 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame16">
<div class="frame16"></div>
<div class="price frameprice"> Price: Ksh 4,250 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame17">
<div class="frame17"></div>
<div class="price frameprice"> Price: Ksh 7,000 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
<div class="frameholder frame19">
<div class="frame19"></div>
<div class="price frameprice"> Price: Ksh 5,400 </div>
<button class="btn btn-frame1"> CHOOSE</button>
</div>
</div>
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<script type="text/javascript">window.onload = function() { Calendly.initBadgeWidget({ url: 'https://calendly.com/shirquillesande', text: 'Schedule a Virtual Tour with an Expart', color: '#E2B48E', textColor: '#ffffff', branding: true }); }</script>
<!-- Calendly badge widget end -->
</body>
</html>
</body>
</html>