Type code on the left, watch it come alive on the right. Nothing you do here can break the real site — play freely. When you're ready, log in to admin and edit the real home page.
A web page is just text in three flavors:
<h1>Title</h1>, <p>Paragraph</p>)<style> tags.<script> tags.Ctrl+S to force a save (it's automatic anyway).Pick example #1 (Hello, world) from the dropdown. Read the comments — the bits between <!-- --> in HTML and /* */ in CSS. They explain what each line does. Change a word, change a color, see what happens. You can't break anything.
Most HTML looks like <tag>stuff</tag>. The opening tag, your content, then a closing tag with a slash. Common ones:
<h1> through <h6> — headings, big to small<p> — a paragraph of text<a href="/somewhere">Link text</a> — a clickable link<img src="cat.jpg"> — an image (no closing tag)<div> — a generic box that holds other thingsInside a <style> tag, write selector { property: value; }:
h1 { color: red; } — all h1s become red.fancy { font-size: 40px; } — anything with class="fancy" gets bigbody { background: black; color: white; } — dark mode!Once you can change a sandbox example and make it look how you want, you're ready to edit the actual home page of dolteddown.com.
Go to Admin →