Abstract Art 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>Abstract Art Headings</title> <style> @import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap'); body { font-family: 'Amatic SC', cursive; background: linear-gradient(135deg, #f8f8f8, #e0e0e0); 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; background: #ffffff; color: #333; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } h1::before, h2::before, h3::before, h4::before, h5::before, h6::before { content: ''; position: absolute; top: -10px; left: -10px; width: 50px; height: 50px; background: #ff6347; border-radius: 50%; transform: translate(-50%, -50%); transition: all 0.3s ease; } h1:hover::before, h2:hover::before, h3:hover::before, h4:hover::before, h5:hover::before, h6:hover::before { background: #ff4500; transform: translate(0, 0); } 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>Abstract Art Heading 1</h1> <h2>Abstract Art Heading 2</h2> <h3>Abstract Art Heading 3</h3> <h4>Abstract Art Heading 4</h4> <h5>Abstract Art Heading 5</h5> <h6>Abstract Art Heading 6</h6> </body> </html>