Comic Book 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>Comic Book Headings</title> <style> @import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap'); body { font-family: 'Permanent Marker', cursive; background: #fffcf2; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; color: #333; } h1, h2, h3, h4, h5, h6 { margin: 20px 0; padding: 10px 20px; border: 3px solid #333; background: #ffdf00; color: #333; text-shadow: 3px 3px #000; box-shadow: 5px 5px #000; transition: all 0.3s ease; } h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover { background: #ff704d; color: #fff; box-shadow: 8px 8px #000; } 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>Comic Book Heading 1</h1> <h2>Comic Book Heading 2</h2> <h3>Comic Book Heading 3</h3> <h4>Comic Book Heading 4</h4> <h5>Comic Book Heading 5</h5> <h6>Comic Book Heading 6</h6> </body> </html>