-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (75 loc) · 3.95 KB
/
index.html
File metadata and controls
97 lines (75 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Utility Relocation Calculator</title>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> -->
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> -->
<script src="https://kit.fontawesome.com/dad72cd715.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
</head>
<body class="init">
<main>
<!-- Top Nav Menu -->
<nav>
<div class="dropdown">
<a href="https://github.com/Moving-Tools/Moving-Tools.github.io" id="large-menu" target="_blank" rel="noopener noreferrer">GitHub</a>
<span id="hamburger"><i class="fas fa-bars"></i></span>
</div>
<div>
<span id="appName">
Utility Mover
</span>
</div>
<div>
<a id="logo" class="about"><i class="fas fa-bolt"></i></a>
<a id="large-menu" class="about">About</a>
</div>
</nav>
<!-- Dropdown Menu (hidden by default) -->
<div id="menu">
<a href="https://github.com/Moving-Tools/Moving-Tools.github.io" target="_blank" rel="noopener noreferrer">GitHub</a>
<a class="about">About</a>
</div>
<div class="step-tracker">
<div id="step">Step 1: Origin Details</div>
<div id="circles">
<i id="circle1" class="fas fa-circle"></i>
<span id="dash">⎯</span>
<i id="circle2" class="far fa-circle"></i>
<span id="dash">⎯</span>
<i id="circle3" class="far fa-circle"></i>
</div>
<!-- Completed step: <i class="fas fa-check-circle"></i> -->
</div>
<div id="center">
<form id="formText">
<label for="origin_state">Current State:</label>
<span id="origin_state_error">Please enter a 2-letter state code.</span>
<input type="text" id="origin_state" name="origin_state" placeholder="Ex: CA" required>
<label for="origin_bill">Electric + Gas Bills:</label>
<span id="origin_bill_error">Please enter a dollar value ($ and . symbols are okay).</span>
<input type="text" id="origin_bill" name="origin_bill" placeholder="Ex: 321.45" required>
<label for="origin_sqft">Square Footage:</label>
<input type="text" id="origin_sqft" name="origin_sqft" placeholder="(Optional)">
<button type="button" value="Next" onclick="nextStep()" id="next">Next</button>
</form>
<div id="info">
<img src="img/pexels-sanaan-mazhar-3052361.jpg" class="about">
<a id="mode" onclick="darkMode()">Toggle Dark Mode</a>
</div>
</div>
<footer>
<span><p>© 2021 Nikhil Rao | sourcenrao ™</p></span>
</footer>
<noscript>This page requires JavaScript to display!</noscript>
</main>
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script> -->
</body>
<script src="js/utility.js"></script>
<script src="js/dropdown.js"></script>
</html>