-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-4.html
79 lines (68 loc) · 2.37 KB
/
index-4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Airport App</title>
<link rel="stylesheet" href="css/styles.css">
<link
rel="stylesheet"
href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
</head>
</head>
<main>
<h1 class="mdc-typography--display1">Copenhagen Airport App</h1>
<input type="search" id="address-input" placeholder="Where r u going" />
<form action="#" id="greeting-form">
<div>
<div class="mdc-form-field">
<div class="mdc-text-field" data-mdc-auto-init="MDCTextField">
<input id="departureCity" type="text" class="mdc-text-field__input">
<label for="departureCity" class="mdc-text-field__label">
Departure City
</label>
<div class="mdc-text-field__bottom-line"></div>
</div>
</div>
</div>
<button type="submit"
class="mdc-button
mdc-button--raised
mdc-ripple-surface"
data-mdc-auto-init="MDCRipple">
Search
</button>
</form>
<p class="mdc-typography--headline" id="greeting">
Welcome to the Copenhagen Airport App. Above you can search for arivals landing in Copenhagen.
</p> <br>
<p class="mdc-typography--headline" id="greeting">
Below you can searh for flights to other destinations. Enjoy your travels.
</p>
<form action="#" id="greeting-form">
<div>
<div class="mdc-form-field">
<div class="mdc-text-field" data-mdc-auto-init="MDCTextField">
<input id="destination" type="text" class="mdc-text-field__input">
<label for="destination" class="mdc-text-field__label">
Destination
</label>
<div class="mdc-text-field__bottom-line"></div>
</div>
</div>
</div>
<button type="submit"
class="mdc-button
mdc-button--raised
mdc-ripple-surface"
data-mdc-auto-init="MDCRipple">
Search
</button>
</form>
</main>
<script src="https://cdn.jsdelivr.net/npm/places.js@1.4.18"></script>
<script src="src/scripts-4.js"></script>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script>window.mdc.autoInit();</script>
</html>