-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 2.29 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 2.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ATW</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- ********** header ********** -->
<header class="header">
<div class="logo">ATW<span>Around The World</span></div>
<div class="search-bar">
<input type="text" placeholder="Type here to search...">
<button class="search-icon bg-gradient"><i class="fa-solid fa-magnifying-glass"></i></button>
</div>
<div class="button-container"><div class="list-all button bg-gradient">List All Countries</div></div>
</header>
<!-- ********** banner ********** -->
<div class="banner">
<div class="cover"></div>
</div>
<!-- ********** main content ********** -->
<main class="main-content">
<div class="country">
<div class="flag"><img src="https://flagcdn.com/ly.svg" alt="flag"></div>
<div class="country-name">Country Name</div>
<div class="see-more"><div class="button bg-gradient" onclick="openModal('Country Name')">See More</div></div>
</div>
</main>
<div class="modal-container">
<div class="close-modal"><i class="fa-solid fa-rectangle-xmark"></i></div>
<div class="modal">
<div class="country-info"></div>
</div>
</div>
<!-- ********** footer ********** -->
<footer class="footer light">
<span>© 2024 created by Santos, V.G.S</span>
<span class="credits">credits to <a href="https://restcountries.com/" target="_blank">API REST Countries</a></span>
</footer>
<script src="assets/js/requests.js"></script>
<script src="assets/js/modal.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>