-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (35 loc) · 1.33 KB
/
index.html
File metadata and controls
44 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META DATA -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- GOOGLE FONTS -->
<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:wght@300;400;500&display=swap" rel="stylesheet">
<!-- IMPORTS & CUSTOMIZATION -->
<link rel="icon" type="image/x-icon" href="/assets/fav.png">
<link rel="stylesheet" href="./styles.css">
<title>Data Structure Visualizer</title>
</head>
<body class="orange">
<script src="app.js" type="module"></script>
<div class="main-body orange" id="main-body">
<div class="prompt-body" id="prompt-body">
<h1 class="header font" id="main-header">
Welcome
</h1>
<div>
<div id="input-prompt" class="prompt font">
Please Give Me An Array of Integers
</div>
<div id="form-container"></div>
</div>
<p class="description font" id="description">
Simply type or paste in a bunch of numbers separated by commas or spaces
</p>
</div>
</div>
</body>
</html>