-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (105 loc) · 5.08 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="it" data-state="wizard">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIrport</title>
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<!-- TOM TOM API STYLE -->
<link rel="stylesheet" type="text/css"
href="https://api.tomtom.com/maps-sdk-for-web/cdn/6.x/6.18.0/maps/maps.css" />
</head>
<body>
<header>
<h1>AIrport Travel Planner</h1>
<p>Plan your weekend with GPT</p>
</header>
<main>
<div class="container">
<!-- WIZARD SECTION - STARTING SCREEN -->
<section class="wizard">
<div class="user-data">
<form>
<label class="label-text">Where do you want to go today ?</label>
<input required class="field" type="text" name="location"
placeholder="Enter a destination...">
<label class="label-text">In which season ?</label>
<fieldset class="field-group">
<label><input required type="radio" name="season" value="spring"> 🌸 Spring</label>
<label><input required type="radio" name="season" value="summer"> ☀️ Summer</label>
<label><input required type="radio" name="season" value="autumn"> 🍁 Autumn</label>
<label><input required type="radio" name="season" value="winter"> ❄️ Winter</label>
</fieldset>
<label class="label-text">Who are you traveling with ?</label>
<select required class="field" name="company">
<option value="" selected disabled>Choose who you go with...</option>
<option value="alone">Alone</option>
<option value="with friends">With friends</option>
<option value="with partners">with partners</option>
</select>
<button class="btn">Create Itinerary</button>
</form>
</div>
</section>
<!-- LOADING SECTION - LOADING SCREEN -->
<section class="loading">
<img src="images/loader.gif" alt="Loading...">
</section>
<!-- TRAVEL SECTION - RESULTS SCREEN -->
<section class="travel">
<div class="travel-head">
<div class="travel-title">
<div class="travel-name">
your travel at <b>Rome</b>
</div>
<div class="travel-detail">
in<b> SUMMER</b>,<b> WITH FRIENDS</b>
</div>
</div>
<div class="travel-image">
<!-- <img src="https://unsplash.it/512" alt="immagine di viaggio"> -->
</div>
</div>
<div class="travel-content">
<div class="travel-plan">
<div class="cards">
<template>
<div class="card">
<div class="card-day">DAYSTAGE</div>
<div class="card-title">lorem ipsum</div>
<div class="card-content">
<p>
<b>Location:</b>
lorem ipsum etc etcetcetc lorem ipsum etc etcetcetc lorem ipsum etc
etcetcetc
</p>
<p>
<b>Facts':</b>
lorem ipsum etc etcetcetc lorem ipsum etc etcetcetc lorem ipsum etc
etcetcetc
</p>
</div>
</div>
</template>
</div>
</div>
<div class="travel-map">
<div id="map"></div>
<!-- MAP -->
</div>
</div>
</section>
</div>
</main>
<!-- TOM TOM API -->
<script src="https://api.tomtom.com/maps-sdk-for-web/cdn/6.x/6.18.0/maps/maps-web.min.js"></script>
<!-- custom config -->
<script src="./config.js"></script>
<script src="./script.js"></script>
</body>
</html>