28 lines
675 B
HTML
28 lines
675 B
HTML
|
<!--
|
||
|
|
||
|
Comes from a video by Kevin Powell
|
||
|
Create a neon button with a reflection using CSS [6xNcXwC6ikQ]
|
||
|
|
||
|
-->
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Neon Button</title>
|
||
|
|
||
|
<!-- Google fonts -->
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@700&display=swap" rel="stylesheet">
|
||
|
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<a href="#" class="neon-button">Neon</a>
|
||
|
</body>
|
||
|
|
||
|
</html>
|