-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 966 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 966 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Sortalgos</title>
<meta name="title" content="Sortalgos" />
<meta name="description" content="Sorting algorithms visualizer" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Sortalgos" />
<meta property="og:description" content="Sorting algorithms visualizer" />
<meta property="og:image" content="/static/images/logo.png" />
<link
rel="shortcut icon"
type="image/ico"
href="/static/images/favicon.ico"
/>
<link
href="https://fonts.googleapis.com/css?family=Work+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>