-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (64 loc) · 3.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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, shrink-to-fit=no">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body{
overflow: hidden;
}
</style>
<!-- bootstrap link -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous"> -->
<!-- ----------------------- -->
</head>
<body>
<div id="wizard">
<img id="wiz" src="wizard.png">
</div>
<div class="menu-bar">
<ul>
<li><img src="Amanda Wood.png" alt="logo-design" class="logo"></li>
<li><a href="index.html">HOME</a></li>
<li><a href="#">SEARCHING</a>
<div class="sub-menu-search">
<ul>
<li><a href="binarysearch.html">Binary Search</a></li>
<li><a href="linearsearch.html">Linear Search</a></li>
</ul>
</div>
</li>
<li><a href="#">SORTING</a>
<div class="sub-menu-sort">
<ul>
<li><a href="selectionsort.html">Selection Sort</a></li>
<li><a href="insertionsort.html">Insertion Sort</a></li>
<li><a href="bubblesort.html">Bubble Sort</a></li>
<li><a href="heapsort.html">Heap Sort</a></li>
</ul>
</div>
</li>
<li><a href="waiting.html">BACKTRACKING</a></li>
<li><a href="waiting.html">GRAPH TRAVERSAL</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</div>
<div class="img-div">
<img class="bgimg" src="newbg.png" alt="background-img">
<div class="main-content"><h1>
<div class="txtonimg"><pre class="fon1">Let's Explore a</pre.><pre class="fon2">new way to deal </pre.><pre class="fon3">with algorithms</pre></div>
</h1>
<div class="txtonimg1">
<h4 class="fon4">Beginner?No worries....</h4>
<button class="beginbtton" onclick=" location.href='beginner.html' ">Get's Started</button>
</div></div>
</div>
<script src="script.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script> -->
</body>
</html>