-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInsertion.html
53 lines (49 loc) · 1.38 KB
/
Insertion.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
<!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>Sortings</title>
<style>
body{
background-color: black;
color: black;
}
.Insertion {
display: flex;
justify-content: center;
background-color: black;
width: 90%;
height: 350px;
align-items: center;
}
h1 {
color: yellowgreen;
font-size: 2cm;
text-align: center;
}
.bot {
display: flex;
align-items: center;
justify-content: center;
margin: 100px auto; /* Use "auto" to center horizontally */
border: 3px solid red; /* Correct the syntax for border */
cursor: pointer;
position: relative;
font-size: 1cm;
}
.innerdev {
width: 30px;
margin: 0 2px;
background-color: blue;
}
</style>
<body>
<h1>Insertion Sort</h1>
<div class="Insertion">
</div>
<button class="bot">Click To Start</button>
<script src="Insert.js"></script>
</body>
</html>