html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href="#" class="neon-button">About</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
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #24252A;
font-family: "Montserrat", sans-serif;
font-size: 16px;
}
:root {
--clr-neon: hsl(189, 100%, 63%);
--clr-neon2: hsl(0, 97%, 43%);
--clr-bg: #24252A;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
min-height: 100vh;
display: grid;
place-items: center;
background: var(--clr-bg);
font-family: "Balsamiq Sans", cursive;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run