-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (41 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visualizers</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<script src="./script.js" defer></script>
</head>
<body>
<header>
<h1>Visualizers</h1>
</header>
<span class="theme" onclick="toggle()"><i id="theme-icon" class="fas fa-moon"></i> </span>
<div class="box">
<div class="proj">
<img src="https://user-images.githubusercontent.com/55138889/137448051-27836bf6-a1cd-406d-aac5-810dead55a25.png"
alt="BFS-Visualizer Screenshot" class="proj-img">
<a href="./BFS Visualizer/index.html" class="button">BFS-Visualizer</a>
</div>
<div class="proj">
<img src="./screenshots/screenshot-dfs.jpg" alt="DFS-Visualizer Screenshot #TODO" class="proj-img">
<a href="./DFS Visualizer/index.html" class="button">DFS-Visualizer</a>
</div>
<div class="proj">
<img src="./screenshots/screenshot-sorting.jpg" alt="Sorting Visualizer Screenshot #TODO" class="proj-img">
<a href="./Sorting/index.html" class="button">Sorting Visualizer</a>
</div>
<div class="proj">
<img src="./screenshots/screenshot-mazegen.jpg" alt="Sorting Visualizer Screenshot #TODO" class="proj-img">
<a href="./Maze Solver//index.html" class="button">Maze</a>
</div>
<div class="proj">
<img src="./screenshots/screenshot-root-locusjpg.jpg" alt="Sorting Visualizer Screenshot #TODO" class="proj-img">
<a href="./Root Locus/index.html" class="button">Root Locus Visualizer</a>
</div>
</div>
</html>