-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Country Guide</title>
<!--Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet" />
<!-- Github icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Stylesheet -->
<link rel="stylesheet" href="./css/style.css" />
<!-- FavIcon -->
<link rel="shortcut icon" href="./img/mapa.png" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="search-wrapper">
<input type="text" id="country-inp" placeholder="Enter a country name here..." />
<button id="search-btn">Search</button>
</div>
<div id="result"></div>
<footer>
<div>
<p>Developed by</p>
<p>
<a href="https://github.com/mendesarthur" target="_blank">
Arthur Mendes
<i style="font-size:24px" class="fa"></i>
</a>
</p>
</div>
</footer>
</div>
<!-- Script -->
<script src="./js/script.js"></script>
</body>
</html>