Neon Glow Headings - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Neon Glow Headings</title> <style> @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); body { font-family: 'Bebas Neue', cursive; background: #000; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; color: #fff; } h1, h2, h3, h4, h5, h6 { margin: 20px 0; padding: 10px 20px; color: #fff; text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea, 0 0 30px #00ffea, 0 0 40px #00ffea; transition: all 0.3s ease; } h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover { text-shadow: 0 0 20px #00ffea, 0 0 40px #00ffea, 0 0 60px #00ffea, 0 0 80px #00ffea; } h1 { font-size: 3em; } h2 { font-size: 2.5em; } h3 { font-size: 2em; } h4 { font-size: 1.75em; } h5 { font-size: 1.5em; } h6 { font-size: 1.25em; } </style> </head> <body> <h1>Neon Glow Heading 1</h1> <h2>Neon Glow Heading 2</h2> <h3>Neon Glow Heading 3</h3> <h4>Neon Glow Heading 4</h4> <h5>Neon Glow Heading 5</h5> <h6>Neon Glow Heading 6</h6> </body> </html>