-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
132 lines (132 loc) · 3.7 KB
/
page2.html
File metadata and controls
132 lines (132 loc) · 3.7 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sorting algorithms</title>
<style>
body {
background-image: url(/Images/algo.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
text-align: center;
}
.button {
background-color: rgb(33, 145, 33);
border: none;
border-radius: 12px;
color: black;
padding: 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
transition-duration: 0.4s;
width: 380px;
cursor: pointer;
margin: 15px 90px;
}
.button:hover {
background-color: goldenrod;
color: blanchedalmond;
}
</style>
</head>
<body>
<h1 style="font-size: 50px">WELCOME TO OUR SORTING APP</h1>
<h2 style="font-size: 30px">CHOOSE YOUR SORTING ALGORITHM</h2>
<div>
<a href="page3.html"
><button class="button" onclick="doSomething()">
Insertion Sort
</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
<a href="page4.html"
><button class="button" onclick="doSomething()">Bubble Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
</div>
<div>
<a href="page5.html"
><button class="button" onclick="doSomething()">Merge Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
<a href="page6.html"
><button class="button" onclick="doSomething()">Quick Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
</div>
<div>
<a href="/Codes/Radix/index.html"
><button class="button" onclick="doSomething()">Radix Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
<a href="page8.html"
><button class="button" onclick="doSomething()">Heap Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "Goodbye";
}
</script>
</div>
<div>
<a href="page9.html"
><button class="button" onclick="doSomething()">Bucket Sort</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "HELLO";
}
</script>
<a href="page10.html"
><button class="button" onclick="doSomething()">
Counting Sort
</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "HELLO";
}
</script>
</div>
<div>
<a href="page11.html"
><button class="button" onclick="doSomething()">7.4.2 book</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "HELLO";
}
</script>
<a href="page12.html"
><button class="button" onclick="doSomething()">8.1.4 book</button></a
>
<script>
function doSomething() {
document.getElementById("test").innerHTML = "HELLO";
}
</script>
</div>
</body>
</html>