HTML Live Editor
Click elements to edit them!
Made with ♡ by
Appition
Export HTML
HTML Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Awesome Page</title> <style> body { font-family: Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #000000; color: white; } h1 { text-align: center; font-size: 2.5rem; } p { line-height: 1.6; font-size: 1.1rem; } img { max-width: 100%; border-radius: 10px; margin: 20px 0; } a { color: #ffd700; text-decoration: none; font-weight: bold; } a:hover { text-decoration: underline; } footer { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; color: #888; font-size: 0.9rem; } </style> </head> <body> <h1>Welcome to My Website!</h1> <p>This is a simple example page. Click on any text to edit it, or click on images to change them!</p> <img src="/colorful-abstract.png" alt="Colorful Design"> <p>You can also add links like this: <a href="https://example.com">Click here to visit Example.com</a></p> <p>Have fun creating your own webpage! ✨</p> <footer>Made with ♡ by <a href="https://www.appition.com">Appition</a>.</footer> </body> </html>
Live Preview
(Click any element to edit)