-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Country App</title>
<!-- CSS -->
<link rel="stylesheet" href="CSS/style.css" />
</head>
<div class="background">
<body>
<div id="wrapper">
<header>
<h1>🌎<br>Country Data Index</h1>
</header>
<main>
<div class="grid-container">
<div class="country-container">
<div class="search">
<input
type="text"
id="country-input"
placeholder="Enter your country here..."/>
<button class="search-button" id="search-button">Search</button>
</div>
<div id="result"></div>
</div>
</div>
<br>
<div class="intro" id="intro">
<div class="intro-headers">
<h2>Welcome.</h2>
<h3>Type a country name above to learn some facts.</h3>
<h3>This app is designed to help you aggregate information about countries around the world.</h3>
<h3>🔎</h3>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
</main>
<footer>
<p><span>Country Data Index</span><br>By Max W. / 2023</p>
</footer>
</div>
</div>
</html>