-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
28 lines (25 loc) · 855 Bytes
/
Home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ALGO-VIZ</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse" style="background-color: #34495e;>
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Algorithm Visualizer</a>
</div>
<ul class="nav navbar-nav">
<li id='clearbutton'><a>Clear</a></li>
</ul>
</div>
</nav>
<div class="container">
</div>
</body>
</html>