html在线编辑预览器
独立编辑HTML、CSS和JavaScript,实时预览效果
HTML
我的网页
编辑左侧代码,实时查看下方效果
点击我
CSS
body { font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; max-width: 800px; margin: 0 auto; } h1 { color: #4285f4; border-bottom: 2px solid #eee; padding-bottom: 10px; } #demo-btn { background: #4285f4; color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; transition: background 0.3s; } #demo-btn:hover { background: #3367d6; }
JavaScript
document.getElementById('demo-btn').addEventListener('click', function() { alert('按钮被点击了!'); this.textContent = '已点击'; });
实时预览
在新窗口预览
下载完整代码
重置代码