-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpop-up.html
More file actions
20 lines (20 loc) · 812 Bytes
/
pop-up.html
File metadata and controls
20 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- Default extension pop-up -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cBUS🚎FAIR</title>
<link rel="stylesheet" type="text/css" href="pop-up.css">
<script src="pop-up.js"></script>
<script src="https://kit.fontawesome.com/1a7f5ea996.js" crossorigin="anonymous"></script>
</head>
<body class="background-color">
<div class="header card">
<span><h1>cBUS<i class="fas fa-bus" id="bus-icon"></i>FAIR</h1></span>
</div>
<div class="input" id="address-wrapper"><b>Starting Address:</b></div>
<div class="input" id="destination-wrapper"><b>Your Destination:</b><input id="destination-input" type="text"></div>
<div id="button-wrapper"><button>Check Routes</button></div>
</body>
</html>