-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflight.html
41 lines (35 loc) · 1.23 KB
/
flight.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flights Search</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css'>
<link rel="stylesheet" href="css/flight.css">
<link rel="stylesheet" href="css/tab.css">
</head>
<body style="background-color:#9f9ec8;">
<h1 class="error">
Speech Recognition is not supported in your browser, try using Chrome.
</h1>
<button class="start">
Start Searching for Flights <i class="fa fa-comments"></i>
</button>
<div class="container" style="background-color:#9f9ec8;border: solid white">
<i class="fa fa-microphone fa-3x"></i>
<!-- Recognized voice -->
<h3 class="command"></h3>
<h5>Try These Voice Commands!</h5>
<ul>
<li>What time is it?</li>
<li>Search for flights from <source> to <destination></li>
</ul>
</div>
<a href="index.html"><h3> <- Back </h3></a>
<p class="info">
*The app uses an experimental API which may not work in some browsers.
</p>
<!-- Javascript Files -->
<script src="js/flight.js"></script>
</body>
</html>