HTML.JANYX.LOL
HTML
CSS
JS
Console
index.html
HTML
Document
HTML Playground
Build something.
Bearbeite HTML, CSS und JavaScript in den Tabs.
Say hello
styles.css
CSS
* { box-sizing: border-box; } body { display: grid; min-height: 100vh; margin: 0; place-items: center; background: #f5f5f1; color: #161616; font-family: Arial, sans-serif; } .sample-card { width: min(420px, calc(100% - 40px)); } .eyebrow { color: #888; font-size: 12px; font-weight: bold; letter-spacing: .1em; text-transform: uppercase; } h1 { margin: 8px 0; font-size: clamp(38px, 9vw, 64px); } p { line-height: 1.5; } button { padding: 11px 16px; border: 0; background: #161616; color: white; cursor: pointer; }
script.js
JAVASCRIPT
console.log('Playground ready'); document.querySelector('#hello').addEventListener('click', () => { console.log('Hello from your preview!'); });
Console
Clear
Logs from your preview appear here.