Skip to content

Instantly share code, notes, and snippets.

// Create a style element for CSS
const style = document.createElement('style');
style.textContent = `
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;