-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubble.html
31 lines (26 loc) · 842 Bytes
/
bubble.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="stylebub.css" />
</head>
<body>
<header>
<img class="logo" src="images/logo.png" width="125" height="37" alt="logo">
<nav>
<ul class="nav__links">
<li><a href="searching.html">Searching</a></li>
<li><a href="sorting.html">Sorting</a></li>
<li><a href="home.html">About</a></li>
</ul>
</nav>
<a class="cta" href="contact.html"><button>Contact</button></a>
</header>
<br />
<p class="header">Bubble Sort</p>
<div id="array"></div>
<script src="scriptbub.js"></script>
</body>
</html>