-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.5 KB
/
index.html
File metadata and controls
36 lines (31 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" sizes="16x16" href="/favicon-16x16.svg" />
<link rel="shortcut icon" href="/favicon.svg" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.svg" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="JS Challenge Lab - Interactive JavaScript coding challenges to sharpen your skills" />
<meta name="keywords" content="javascript, coding, challenges, programming, practice, education" />
<!-- Theme colors -->
<meta name="theme-color" content="#1e40af" />
<meta name="msapplication-TileColor" content="#1e40af" />
<meta name="msapplication-navbutton-color" content="#1e40af" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="JS Learning Lab" />
<title>JS Learning Lab - Interactive JavaScript Learning Platform</title>
<!-- Force deployment refresh -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>