-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfs.html
30 lines (30 loc) · 1.19 KB
/
dfs.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
<!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>DFS</title>
<link rel="stylesheet" href="./gen.css">
</head>
<body>
<header>
<div><a href="./index.html" id="navigation"><img src="./previous.svg" alt="back"> <span>Go Back</span></a></div>
<div><div class="color h-unvisited"></div>- Unvisited</div>
<div><div class="color h-visiting"></div>- Visiting</div>
<div><div class="color h-instack"></div>- In Stack</div>
<div><div class="color h-visited"></div>- Visited</div>
</header>
<main>
<div class="box"></div>
</main>
<footer>
<div id="options">
<div><label for="rows">Rows</label><input id="rows" name="rows" type="number" placeholder="Enter rows"></div>
<div><label for="columns">Columns</label><input name="columns" id="columns" type="number" placeholder="Enter columns"></div>
<div><label ></label><button id="generateGridButton">Generate</button></div>
</div>
</footer>
</body>
<script src="./dfs.js"></script>
</html>