Online HTML Compiler
HTML
CSS
JavaScript
<!DOCTYPE html> <html> <head> <title>My Page</title> </head> <body> <h1>Hello, World!</h1> <p>This is a simple example.</p> </body> </html>
h1 { color: #4CAF50; text-align: center; } p { font-family: Arial; font-size: 18px; }
document.querySelector('h1').addEventListener('click', function() { alert('You clicked the heading!'); });
Run Code
Output Preview