-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.52 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
<!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.0">
<title>Frontend Mentor | REST Countries API with color theme switcher hub</title>
<link rel="icon" type="image/png" sizes="32x32" href="image/favicon-32x32.png">
<link rel="stylesheet" href="scss/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src="script.js" defer></script>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Where in the world?</h1>
<button class="container-theme">
<div class="theme-mode light">
<i class="bx bx-moon dark"></i>
<i class='bx bx-sun light'></i>
</div>
<span class="theme-text">Dark Mode</span>
</button>
</header>
<main>
<article id="content">
<!-- The content of this article is in the return from setContent(); -->
</article>
</main>
<footer hidden>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/GustavoSachetto?tab=repositories" target="_blank">Gustavo sachetto</a>.
</p>
</footer>
</body>
</html>