-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassList.html
More file actions
43 lines (33 loc) · 926 Bytes
/
ClassList.html
File metadata and controls
43 lines (33 loc) · 926 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.mybtn {
font-size: 2rem;
border: none;
}
.enable {
background-color: blueviolet;
}
.hover {
box-shadow: 0px 0px 10px 10px rgb(103, 97, 97);
font-weight: bold;
}
.disable {
background-color: hsl(62, 75%, 49%);
color: rgb(178, 132, 132);
}
</style>
</head>
<body>
<button class="mybtn">My Button-1</button><button class="mybtn">My Button-2</button><button class="mybtn">My
Button-3</button><button class="mybtn">My Button-4</button>
<!-- <h1 id="Myh1">Heloo</h1>
<button id="mybtn">My Button</button> -->
<script src="ClassList.js">
</script>
</body>
</html>