Quay về
Việt
Eng
Code Editor Trực tuyến
reset
download
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My Project</title> </head> <body> <div id="app"> <h1>Hello, World!</h1> <p>Welcome to the Code Editor</p> </div> </body> </html>
CSS
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; } h1 { font-size: 2.5em; margin-bottom: 10px; } #app { background: rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 10px; backdrop-filter: blur(10px); }
JavaScript
console.log('Code Editor Ready!'); document.addEventListener('DOMContentLoaded', function() { console.log('Page loaded'); });
preview