-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 935 Bytes
/
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<title>Countries of The World</title>
</head>
<body>
<header>
<h1>Pays du Monde</h1>
</header>
<main>
<div class="search">
<label for="searchBar">Rechercher</label>
<input type="search" class="searchBar" name="searchInput" id="searchInput" placeholder="Recherche par pays"/>
</div>
<div class="dataContainer">
</div>
</main>
<footer>
<p>Source de données :</p>
<a href="https://restcountries.com/">API Rest Countries</a>
</footer>
<script src="script.js"></script>
</body>
</html>