-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (67 loc) · 2 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
72
73
74
75
<!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.0" />
<title>Document</title>
<style>
body{
background-image: url('https://img.freepik.com/free-vector/background-realistic-abstract-technology-particle_23-2148431735.jpg?size=626&ext=jpg');
}
h1{
font-size: 8vw;
color: white;
text-transform: uppercase;
text-align: center;
}
p{
color: white ;
font-size: 40px;
text-align: center;
text-transform: uppercase;
}
a{
text-decoration: none;
font-size:50px;
border-radius: 50%;
color: white;
}
.sort{
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
button{
font: bolder;
border-radius: 5px;
border-color:aliceblue;
text-align: center;
background-color: orangered;
color: white;
}
button:hover {
background: #03f40f;
color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px #03f40f,
0 0 25px #03f40f,
0 0 50px #03f40f,
0 0 100px #03f40f;
transition: 0.5s;
}
</style>
</head>
<body>
<div class="header">
<h1>welcome!</h1>
<p>which type of sorting method you want to understand. </p>
<div class="sort">
<button><a href="bubble_sort.html" target="_blank">BUBBLE SORT</a></button>
<button><a href="insertion_sort.html" target="_blank">INSERTION SORT</a></button>
<button><a href="selection_sort.html" target="_blank">SELECTION SORT</a></button>
</div>
</div>
</body>
</html>