diff --git a/coding-standards/html.md b/coding-standards/html.md
index 9a2b308..b738f14 100644
--- a/coding-standards/html.md
+++ b/coding-standards/html.md
@@ -7,10 +7,10 @@ Following are additional guidelines to be followed.
**Note**: The following rules will override the ones provided in google style guide.
## General
-**HTML is a Markup Language**:
+**HTML is a Markup Language**:
HTML is used to markup your document and not style it. We have CSS for styling. This means it is not advisable to use h1, h2 to size your content.
-**Always Specify a DOCTYPE**:
+**Always Specify a DOCTYPE**:
Always specify the doctype at the top of the page. Ideally, this should be:
```html
@@ -109,6 +109,7 @@ Do NOT use ` ` tags to add margin or padding. Instead, use CSS. If you find y
**Do Not Omit Closing Tags**: Although HTML5 allows you to omit closing tags, always close your tags.
### Write One List Item per Line
+
**Bad**
```html
@@ -128,11 +129,13 @@ Do NOT use ` ` tags to add margin or padding. Instead, use CSS. If you find y
### Avoid Ending `/` for Empty Elements
For empty elements, avoid ending the tag with a `/`.
+
**Bad**
```html
```
+
**Good**
```html
@@ -141,12 +144,14 @@ For empty elements, avoid ending the tag with a `/`.
### Proper Progression of Heading Tags
A page should always have an `h1` tag that describes what that page is about. Ideally, a page should have only a single `h1` tag. The page should then progressively go from `h1` to `h2` and then to `h3` and so on.
+
**Bad**
```html
My Page
Joe Black
Jon Doe
```
+
**Good**
```html
My Page
@@ -174,6 +179,7 @@ This will ensure that the resource is downloaded rather than opened. This works
```
### Omit Boolean Attribute Value
+
**Bad**
```html