-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 946 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/jpg+png" href="/icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>REST Countries - @katshidev</title>
<meta
name="description"
content="Explore countries around the world with the REST Countries API.
This app includes features like currency conversion, weather information,
and local time display, all built with React, Tailwind CSS, and multiple APIs and libraries to enhance user experience."
/>
<meta id="theme-color-light" name="theme-color" content="hsl(0, 0%, 98%)" />
<meta
id="theme-color-dark"
name="theme-color"
content="hsl(200, 15%, 8%)"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
</body>
</html>