-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 2.48 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
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/world-map-svgrepo-com.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WorldView | Rest Countries API Site</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Explore countries around the world with flags and related information using the Rest Countries API on WorldView." />
<meta name="keywords" content="WorldView, Rest Countries API, flags, country information, RESTful API, Frontend Mentor, web development, Rest Countries API Site, world flags" />
<meta name="author" content="Frontend Mentor & Bryan Li" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_CA">
<meta property="og:site_name" content="WorldView | Rest Countries API Site">
<meta property="og:url" content="https://rest-countries-api-site.vercel.app/" />
<meta property="og:title" content="WorldView | Rest Countries API Site" />
<meta property="og:description" content="Explore countries around the world with flags and related information using the Rest Countries API on WorldView." />
<meta property="og:image" content="https://github.com/Zy8712/rest-countries-api-site/blob/main/src/assets/world-map-svgrepo-com.svg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://rest-countries-api-site.vercel.app/" />
<meta property="twitter:title" content="WorldView | Rest Countries API Site" />
<meta property="twitter:description" content="Explore countries around the world with flags and related information using the Rest Countries API on WorldView." />
<meta property="twitter:image" content="https://github.com/Zy8712/rest-countries-api-site/blob/main/src/assets/world-map-svgrepo-com.svg" />
<style>
@font-face {
font-family: 'NunitoSans';
src: url('/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
}
body {
font-family: 'NunitoSans', sans-serif;
}
</style>
<link rel="stylesheet"
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css" defer>
</head>
<body class="w-screen min-h-screen overflow-x-hidden overflow-y-auto !m-0 !p-0">
<div id="root" class="!max-w-full min-h-screen !m-0 !p-0 relative"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>