-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.83 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Progetto Frontend</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.0/font/bootstrap-icons.min.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="/public/favicon/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="192x192" href="/public/favicon/android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="512x512" href="/public/favicon/android-chrome-512x512.png">
<link rel="manifest" href="/public/favicon/site.webmanifest">
<!-- Custom CSS -->
<link rel="stylesheet" href="/public/home.css">
<link rel="stylesheet" href="/public/login.css">
<link rel="stylesheet" href="/public/register.css">
<link rel="stylesheet" href="/public/chat.css">
<link rel="stylesheet" href="/public/profile.css">
<link rel="stylesheet" href="/public/taskAvaiable.css">
<link rel="stylesheet" href="/public/taskActive.css">
<link rel="stylesheet" href="/public/notification.css">
<link rel="stylesheet" href="/public/pong.css">
<script type="importmap">
{
"imports": {
"three": "/node_modules/three/build/three.module.js",
"three/addons/": "/node_modules/three/examples/jsm/"
}
}
</script>
</head>
<body>
<div class="App"></div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script type="module" src="/public/index.js"></script>
</body>
</html>