-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.67 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
<!doctype html>
<html lang="en">
<head>
<!-- Character encoding for the document -->
<meta charset="UTF-8" />
<!-- Viewport settings for responsive web design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title of the webpage -->
<title>Dionysus</title>
<!-- Link to Google's Material Icons stylesheet -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<!-- Preconnect to Google's font server for faster font loading -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<!-- Preconnect to Google's static font server with cross-origin permissions -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Link to Google's Roboto font family, including various font weights -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<!-- Link to Edu AU VIC WA NT Hand font family with specific weight -->
<link href="https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@450&display=swap" rel="stylesheet">
<!-- Link to Kalnia Glaze font family with a range of weights -->
<link href="https://fonts.googleapis.com/css2?family=Kalnia+Glaze:wght@100..700&display=swap" rel="stylesheet">
<!-- Link to Manrope font family with a range of weights -->
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap" rel="stylesheet">
</head>
<body>
<!-- Root element for the React application -->
<div id="root"></div>
<!-- Main entry script for the React application using ES modules -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>