This page shows the clean layout your tutorials will use. It carries the same steel ice aesthetic as the homepage. You can duplicate this file for each new tutorial, modify the content, and link back to it from the main page.
A simple HTML document contains a head and a body. Start with something like:
<!DOCTYPE html>
<html>
<head>
<title>My Guide</title>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
Keep everything minimal before layering on styles and features.
Use a soft ice blue background and frosted cards like the main site:
body {
background: radial-gradient(circle, #f9fcff, #dde6f5);
font-family: "Trebuchet MS";
}
.container {
width: 820px;
margin: auto;
background: rgba(255,255,255,0.9);
padding: 20px;
border-radius: 14px;
}
These subtle gradients tie the entire site together visually.
From here you can add sections, images, embed code blocks, reference files, and link back to the main archive.