Use 2 spaces for indentation in your file (not a tab character)
> to make sure your formatting will look the same everiwhere
Remember about correct indentation between parent and child elements
> Each level of nesting, including text, contained inside the element, requires 2-space offset.
Also blank line shouldn't be between parent and child elements.
GOOD example
```html
Awesome text
```
BAD example
```html
Awesome text
```
Add empty lines between multiline sibling blocks of HTML
> To add some "air" and simplify reading. But don't add them between parent and child elements.
GOOD Example
```html
```
Keep your attributes correctly formatted
> If the HTML-element has long attribute values or number of attributes is more than 2 - start each one,
including the first, on the new line with 2-space indentation related to tag.
Tag’s closing bracket should be on the same level as opening one.
GOOD Example
```html
```
BAD Examples
```html
```
Lines of code have 80 chars max
> It is just easier to read such lines