-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 898 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 898 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Asyncronous JavaScript</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<div class="countries-container">
<!-- <article>
<img src="bd-flag.png" alt="" class="country__img" />
<div class="country-data">
<h3 class="country__name">COUNTRY</h3>
<h4 class="country__region">REZION</h4>
<p class="country__row"><span>👪</span> People</p>
<p class="country__row"><span>🗣️</span>LANG</p>
<p class="country__row"><span>💰</span>CUR</p>
</div>
</article> -->
</div>
<div class="images"></div>
</main>
<script src="script.js"></script>
</body>
</html>