-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 881 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather-Report</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.cdnfonts.com/css/product-sans-infanity"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD20fa8okNgStseZ2om1G0aaf7qzVmOvGQ&libraries=places"></script>
</head>
<body class="bg-[#101014] flex min-h-screen px-[0.3rem] py-[0.5rem] w-full">
<div id="app" class="w-full h-full"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>