---
layout: simple
title: Scaffolding
section: Guide
---

Scaffolding refers to the global resets and dependencies that Daptiv is built upon.

* Will be replaced with the ToC, excluding the "Contents" header
{:toc}

## HTML5 doctype

We use certain HTML elements and CSS properties that **require** the use of the HTML5 doctype. Include it at the beginning of all your pages.

{% highlight html %}
<!DOCTYPE html>
<html lang="en">
  ...
</html>
{% endhighlight %}
