-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 2.41 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
<!DOCTYPE html>
<html lang="it">
<head>
<title>Code_week</title>
<meta charset="utf-8"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<h1>Cities by Country</h1>
<main class="display-flex-column">
<section class="card__section display-flex-column">
<h2>France</h2>
<input id="search-fr" type="text" name="Francia" class="searchCity" placeholder="Search the city for France..">
<ul id="section-fr" class="card__wrapper display-flex-row"></ul>
</section>
<section class="card__section display-flex-column">
<h2>Italy</h2>
<input id="search-it" type="text" name="Italia" class="searchCity" placeholder="Search the city for Italy..">
<ul id="section-it" class="card__wrapper display-flex-row"></ul>
</section>
<section class="card__section display-flex-column">
<h2>Spain</h2>
<input id="search-es" type="text" name="Spagna" class="searchCity" placeholder="Search the city for Spain..">
<ul id="section-es" class="card__wrapper display-flex-row"></ul>
</section>
<section class="card__section display-flex-column">
<h2>Portugal</h2>
<input id="search-pt" type="text" name="Portogallo" class="searchCity" placeholder="Search the city for Portugal..">
<ul id="section-pt" class="card__wrapper display-flex-row"></ul>
</section>
<section class="card__section display-flex-column">
<h2>Greece</h2>
<input id="search-gr" type="text" name="Grecia" class="searchCity" placeholder="Search the city for Greece..">
<ul id="section-gr" class="card__wrapper display-flex-row"></ul>
</section>
<section class="card__section display-flex-column">
<h2>Germany</h2>
<input id="search-de" type="text" name="Germania" class="searchCity" placeholder="Search the city for Germany..">
<ul id="section-de" class="card__wrapper display-flex-row"></ul>
</section>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>