Elegant Gold 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>Elegant Gold Headings</title> <style> @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); body { font-family: 'Great Vibes', cursive; background: #faf3e0; 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: 1px solid #d4af37; background: #fff8e1; color: #b68b00; text-shadow: 1px 1px #d4af37; transition: all 0.3s ease; } h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover { background: #d4af37; color: #fff; border-color: #b68b00; } 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>Elegant Gold Heading 1</h1> <h2>Elegant Gold Heading 2</h2> <h3>Elegant Gold Heading 3</h3> <h4>Elegant Gold Heading 4</h4> <h5>Elegant Gold Heading 5</h5> <h6>Elegant Gold Heading 6</h6> </body> </html>