-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
54 lines (50 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Cartesian Plane Implementation</title>
<link rel="preload" href="./styles/styles.css" as="style" />
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="stylesheet" href="./fontawesome/css/all.min.css" />
<link rel="stylesheet" href="./fontawesome/css/regular.min.css" />
<script>
let FF_FOUC_FIX;
</script>
</head>
<body>
<script>0</script>
<div id="main-container">
<div id="figures-container">
<h2>Figures</h2>
<ul id="figures-list"></ul>
<div id="button-container">
<button type="button" id="add-point-btn">
<i class="fas fa-arrows-to-dot"></i>
<span>Add Point</span>
</button>
<button type="button" id="add-random-point-btn">
<i class="fas fa-arrows-turn-to-dots"></i>
<span>Random Point</span>
</button>
<button type="button" id="add-circle-btn">
<i class="fas fa-circle-notch"></i>
<span>Circle</span>
</button>
<button type="button" id="add-random-line-btn">
<i class="fa-solid fa-up-right-and-down-left-from-center"></i>
<span>Random Line</span>
</button>
<button type="button" id="remove-points-btn">
<i class="fas fa-toilet-paper"></i>
<span>Clear Shit</span>
</button>
</div>
</div>
<div id="cartesian-container">
<div id="svg-container"></div>
</div>
</div>
<script type="module" src="./scripts/main.js"></script>
</body>
</html>