Style Guide (WIP)


Contents

Markup style

Markup (HTML, CSS) should be easy to read and understand. HTML tags should be indented properly to make nesting clear, although certain exceptions may be made. Example:

<body>
	<iframe class="sidenav" src="/sidebar.html"></iframe> 
	<main>
		<header>
			<h1>
				Header
			</h1>
		</header>
		<hr>
		<p>
			Example text
		<p>
		<h2>
			Example header
		</h2>
		<ul>
			<li>List item 1</li>
			<li>List item 2</li>
			<li>List item 3</li>
			<li>List item 4</li>
		</ul>
	</main>
</body>
					

Voice & writing style

TODO

Wording

TODO

Grammar

TODO

Miscellaneous quirks

TODO