-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (46 loc) · 2.36 KB
/
index.html
File metadata and controls
57 lines (46 loc) · 2.36 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title -->
<title>Sortify | Sorting Algorithm Visualizer</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="google-site-verification" content="xdsj1VWtR_O_pjQ8zCSIYoof8PG8JGxkF1OOKwKk7xk" />
<!-- Meta Description -->
<meta name="description"
content="Sortify is an interactive sorting algorithm visualizer. Learn Bubble, Merge, Quick, Heap, Radix, Counting, Insertion, Selection, and more with step-by-step animations." />
<!-- Keywords -->
<meta name="keywords" content="
sorting algorithms, sorting visualizer, bubble sort, bucket sort, cocktail sort, comb sort,
counting sort, cycle sort, gnome sort, heap sort, insertion sort, merge sort,
odd-even sort, pigeonhole sort, quick sort, radix sort, selection sort, shell sort,
algorithm visualizer online, learn sorting algorithms, sorting step by step,
interactive sorting visualizer, sorting tutorial, algorithm animations, computer science sorting
" />
<!-- Author -->
<meta name="author" content="Bhavesh Sharma" />
<!-- ✅ Site Name / Branding -->
<meta property="og:site_name" content="Sortify" />
<meta name="application-name" content="Sortify" />
<meta name="apple-mobile-web-app-title" content="Sortify" />
<!-- Open Graph for Social Sharing -->
<meta property="og:title" content="Sortify - Sorting Algorithm Visualizer" />
<meta property="og:description"
content="An interactive way to learn sorting algorithms through animations and visualizations." />
<meta property="og:image" content="https://sortify-sorting-visualizer.vercel.app/preview-image.png" />
<meta property="og:url" content="https://sortify-sorting-visualizer.vercel.app/" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Sortify - Sorting Algorithm Visualizer" />
<meta name="twitter:description"
content="Visualize sorting algorithms with interactive animations and learn how they work." />
<meta name="twitter:image" content="https://sortify-sorting-visualizer.vercel.app/preview-image.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>