-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 735 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (22 loc) · 735 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Busca em profundidade</title>
<link rel="stylesheet" href="style.css">
<script data-main="app" src="lib/require.min.js"></script>
</head>
<body>
<canvas id="main-canvas"></canvas>
<div id="size-selector">
<input type="radio" name="nodes" value="10" checked> 10
<input type="radio" name="nodes" value="50"> 50
<input type="radio" name="nodes" value="100"> 100
<input type="radio" name="nodes" value="500"> 500
<input type="radio" name="nodes" value="1000"> 1000
<br>
<input id="directed" type="checkbox"> Direcionado
<button id="generate-btn">Gerar</button>
</div>
</body>
</html>