-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (116 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Fountry</title>
<meta
name="description"
content="Find a country with fountry and find out interesting information. The database covers all countries of the world. "
/>
<link rel="icon" type="image/x-icon" href="/src/img/fountry avatar.jpg" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-sA+zWATbFveLLNqWO2gtiw3HL/lh1giY/Inf1BJ0z14="
crossorigin=""
/>
<script
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-NDI0K41gVbWqfkkaHj15IzU7PtMoelkzyKp8TOaFQ3s="
crossorigin=""
></script>
<script defer type="module" src="/src/js/controller.js"></script>
<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=Comfortaa:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/js/all.min.js"
integrity="sha512-naukR7I+Nk6gp7p5TMA4ycgfxaZBJ7MO5iC3Fp6ySQyKFHOGfpkSZkYVWV5R7u7cfAicxanwYQ5D1e17EfJcMA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<link rel="stylesheet" href="/src/scss/main.scss" />
</head>
<body>
<nav class="primary-nav">
<div>
<a href="/"
><img
src="/src/img/fountry logo.png"
alt="fountry logo find a country"
/></a>
<button class="search-countries-btn hide">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
</nav>
<main>
<header class="home-header">
<h1>Find a country with <span>fountry</span></h1>
<div class="search-container">
<form action="">
<input
class="country-input"
spellcheck="false"
placeholder="Type a country"
type="text"
/>
<div><button class="primary-button search-btn">Search</button></div>
</form>
<div class="dropdown-container">
<button class="dropdown-btn">
select from dropdown<i class="fa-solid fa-caret-down"></i>
</button>
<div class="dropdown-options hide"></div>
</div>
</div>
</header>
<section class="thank-you-section">
<h3>Credit to</h3>
<div class="partners">
<a target="_blank" href="https://unsplash.com/"
><img src="/src/img/icons/unsplash.png" alt="unsplash.com"
/></a>
<a target="_blank" href="https://en.wikipedia.org/wiki/Main_Page"
><img src="/src/img/icons/wikipedia.png" alt="wikipedia"
/></a>
<a target="_blank" href="https://leafletjs.com/"
><img src="/src/img/icons/leaflet.png" alt="leaflet"
/></a>
<a target="_blank" href="https://restcountries.com/">
<img
src="/src/img/icons/rest_countries_api.png"
alt="rest countries api"
/>
</a>
</div>
<picture>
<img src="/src/img/alexis-antoine-1tqpzFw1fS4-unsplash.jpg" alt="" />
<p class="author">
Photo by
<a target="_blank" href="https://unsplash.com/photos/1tqpzFw1fS4"
>Alexis Antoine</a
>
on
<a target="_blank" href="https://unsplash.com">Unsplash</a>
</p>
</picture>
</section>
</main>
<footer class="primary-footer">
<p>
Copyright©
<a target="_blank" href="https://maciejkuran.com">maciejkuran.com</a>
</p>
</footer>
<p class="error-label error-label-fixed hide">🔴 Something went wrong</p>
</body>
</html>