-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.44 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>14.04.24 | Home Work</title>
<script src="14.04.24_hw.js"></script>
<style>
.container {
display: flex;
justify-content: center;
}
.btn {
padding: 10px 20px;
font-size: 20px;
border-radius: 7px;
cursor: pointer;
text-align: center;
margin-right: 25px;
border-color: black;
border: 2px solid;
}
:active.btn{
background-color: gray;
}
.btn-success {
padding-inline: 40px;
color: black;
background-color: #28a745;
border: 3px solid;
}
.btn-danger {
color: white;
background-color: #dc3545;
border-color: red;
}
</style>
</head>
<body>
<!-- <script src="14.04.24_hw.js"></script> -->
<div class="container">
<script>
btn_1.show();
btn_2.show();
btn_3.show();
btn_4.show();
</script>
</div>
</body>
</html>