-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (90 loc) · 3.17 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<title>
Sorting Algorithm Visualization: Control Speed and Sorting Size
</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=SUSE:wght@100..800&display=swap"
rel="stylesheet"
media="print"
onload="this.media='all'"
/>
<link rel="canonical" href="https://algorithms-virid.vercel.app/" />
<meta name="theme-color" content="hsl(230, 23%, 20%)" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta
name="description"
content="Learn about algorithm visualization with this interactive tool that allows you to see how different algorithms work."
/>
<meta
name="keywords"
content="algorithm visualization, sorting algorithms, searching algorithms, interactive learning, computer science"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://algorithms-virid.vercel.app/" />
<meta
property="og:title"
content="Interactive Algorithm Visualization Tool"
/>
<meta
property="og:description"
content="Interactive tool for visualizing various algorithms, including sorting and searching."
/>
<meta
property="og:image"
content="https://algorithms-virid.vercel.app/images/algo-screen.png"
/>
<meta
property="og:site_name"
content="Interactive tool for visualizing various algorithms, including sorting and searching."
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://algorithms-virid.vercel.app/"
/>
<meta
property="twitter:title"
content="Interactive Algorithm Visualization Tool"
/>
<meta
property="twitter:description"
content="Interactive tool for visualizing various algorithms, including sorting and searching."
/>
<meta
property="twitter:image"
content="https://algorithms-virid.vercel.app/images/algo-screen.png"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Algorithm Visualization",
"description": "Interactive visualization of various algorithms, including sorting and searching.",
"url": "https://algorithms-virid.vercel.app/",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Any",
"inLanguage": "en",
"offers": {
"@type": "Offer",
"price": "0"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>