-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.03 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon - Using demonn.jpg image -->
<link rel="icon" type="image/jpeg" href="/demonn.jpg" />
<!-- Fallback SVG for browsers that prefer it -->
<link rel="alternate icon" type="image/svg+xml" href="/logo.svg" />
<!-- Apple devices -->
<link rel="apple-touch-icon" sizes="180x180" href="/demonn.jpg" />
<!-- Android/Chrome -->
<link rel="icon" type="image/jpeg" sizes="192x192" href="/demonn.jpg" />
<link rel="icon" type="image/jpeg" sizes="512x512" href="/demonn.jpg" />
<!-- Android/Chrome -->
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#667eea" />
<title>PG Official</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>