html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<img src="https://i.imgur.com/oXw6oA3.png" id="whats">
<div><span>Whatsapp</span><br>Click to chat</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
text-align:center;
}
#whats{
position:absolute;
height:100px;
width:100px;
top:300px;
left:150px;
z-index:1;
}
#whats:hover + div{
width:130px;
color: #fff;
}
span{
font-size:23px;
font-weight:500;
letter-spacing:2px;
}
div{
color:transparent;
position:absolute;
top:320px;
left:230px;
background-color: #07ce54;
height:50px;
width:0px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run