<h1>Heading1</h1>
<h2>Heading2</h2>
<h3>Heading3</h3>
<h4>Heading4</h4>
<h5>Heading5</h5>
<h6>Heading6</h6>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus sint quas
doloribus? Quod quam, sapiente necessitatibus commodi, ab culpa
exercitationem alias iste eius eaque ipsum facere, maxime cupiditate?
Sapiente, est.
</p>
<div>
<label>Text</label>
<input type="text" />
</div>
<div>
<label>Number</label>
<input type="number" />
</div>
<div>
<label>Range</label>
<input type="range" />
</div>
<div>
<button type="button">Button</button>
</div>
<div>
<select>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div>
<label><input type="checkbox" />Checkbox</label>
</div>
<div>
<input type="radio" name="foo" value="odd" />
<label>Odd</label>
<input type="radio" name="foo" value="even" />
<label>Even</label>
</div>
<code>
<pre>
function doSomething(){
console.log("hello world")
}
</pre
>
</code>
@media (prefers-color-scheme: dark) {
body {
--background-color: #333;
--font-color: #f1f1f1;
--primary-color: #ffbdbd;
}
}
@media (prefers-color-scheme: light) {
body {
--background-color: #f1f1f1;
--font-color: #111;
--primary-color: #ffbdbd;
}
}
body {
background: var(--background-color);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
select,
pre,
code,
label {
color: var(--font-color);
}
button,
input,
select {
background-color: var(--background-color);
}
button {
background-color: var(--primary-color);
}
/* Optional */
body {
font-family: Montserrat;
}
div {
margin-top: 30px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.