html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href="#"><div>Click Here!</div></a>
</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 {
margin:0;
padding:0;
}
div {
display:block;
background-color:;
width:300px;
height:150px;
border:2px solid black;
border-radius:90px;
margin-top:50px;
margin-left:30px;
}
a {
text-decoration:none;
text-align:center;
color:white;
display:block;
transition:0.8s;
}
a:focus {
outline:none;
outline-style:none;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run