-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.4 KB
/
index.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
<!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">
<title>Options</title>
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/color-palette-10.css">
<link rel="stylesheet" href="css/palette-apply.css">
<link rel="stylesheet" href="css/main.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="section">
<header>
<h1>Flight Options</h1>
<nav>
<a href="https://github.com/cskeeters/html-options">About</a>
</nav>
</header>
<main>
<div class="filters">
<h1>Filters</h1>
<p class="small">(Cost to apply)</p>
<div id="filter">
<!--Where the checkboxes go-->
</div>
</div>
<div class="options">
<p>Filtered options sorted by price</p>
<div class="cards results">
<div class="card opt" data-name="Delta" data-req="" data-price="250">Details</div>
<div class="card opt" data-name="Southwest" data-req="Non-Stop Frequent-Flier" data-price="320"></div>
<div class="card opt" data-name="American" data-req="Frequent-Flier WiFi" data-price="1100"></div>
</div>
</div>
</main>
</div>
</body>
</html>