-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (47 loc) · 1.69 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3dsort | 3D sort visualizer</title>
<link rel="mask-icon" href="/logo.svg" color="#4C2E71" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<script defer src="/_vercel/insights/script.js"></script>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
crossorigin="anonymous"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin="anonymous"
/>
<link
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<meta
name="keywords"
content="Sorting Bubble Select Selection Insert Insertion Merge Random Quick Heap 3D Sort Visualizer 3d"
/>
<meta
name="description"
content="Sort visualizer in 3D. See how the most popular sorting algorithms work in 3D at your own pace"
/>
<link href="/manifest.webmanifest" rel="manifest" />
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en,pt" />
<meta name="author" content="Marcelo Schreiber" />
<meta name="theme-color" content="#4C2E71" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>