html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<button><a href="https://youtube.com/@CoderHimani320?si=hTQkFZfoFMym_5L-">Button</a></button>
</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 {
background-color:midnightblue;
}
button{
height:80px;
width:240px;
margin-top:200px;
margin-left:30px;
border-radius:40px;
font-size:30px;
color:white;
text-shadow:0 0 2px cyan,
0 0 6px cyan,
0 0 8px cyan;
text-transform:uppercase ;
background:black;
box-shadow:0 0 4px blue,
1px 2px 6px cyan,
2px 4px 8px white;
border:2px solid cyan;
transition-duration:1.5s;
}
button:hover{
height:100px;
width:260px;
border-radius:80px;
color:white;
text-shadow:0 0 2px magenta,
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run