-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhover.html
More file actions
50 lines (49 loc) · 1.02 KB
/
hover.html
File metadata and controls
50 lines (49 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>hover</title>
<style>
#but
{
height: 40px;
width:120px;
background-color: #0176D3;
border: 2px solid #0176D3;
border-radius: 4px;
color: white;
}
#but:hover{
background-color: darkblue;
border: 2px solid darkblue;
}
#demo{
height: 40px;
width: 120px;
background-color: white;
border: 2px solid #0176D3;
border-radius: 4px;
color: #0176D3;
margin-left: 20px;
}
#demo:hover{
background-color: aliceblue;
border: 2px solid darkblue;
color: darkblue;
}
.box
{
display: flex;
}
</style>
</head>
<body>
<div class="box">
<div class="free">
<button id="but">Dicover more</button>
</div>
<div class="trail">
<button id="demo"> watch demo</button>
</div>
</div>
</body>
</html>