Online HTML Compiler
HTML
Hello, world!
This is a paragraph.
CSS
h1 { color: blue; text-align: center; } p { font-size: 16px; color: green; }
JavaScript
document.addEventListener('DOMContentLoaded', () => { console.log("Document loaded and JS executed!"); const p = document.querySelector('p'); if (p) { p.style.fontWeight = 'bold'; } });
Run