-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
51 lines (51 loc) · 1.46 KB
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
50
51
<!doctype html>
<html lang="ru" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="A simple and beautiful weather forecast app using modern JavaScript."
/>
<meta
name="keywords"
content="weather, weather forecast, weather.js, JavaScript, meteo"
/>
<link
rel="icon"
type="image/x-icon"
href="/public/favicon.ico"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/public/favicon-16x16.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/public/apple-touch-icon.png"
/>
<link rel="manifest" href="/manifest.json" />
<title>Weather.js</title>
</head>
<body
class="bg-orange-400/10 font-sans leading-none font-medium 2xl:font-normal text-orange-950"
>
<div
id="root"
class="container mx-auto min-h-screen flex flex-col p-2 text-xl sm:text-2xl md:text-3xl lg:text-4xl"
></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>