Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions markdown/html5.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Learn more: http://en.wikipedia.org/wiki/HTML#History

**Aftermath**:

- Internet Explorer won the war and decided to **stale** any **new developments**.
- Internet Explorer won the war and decided to **stall** any **new developments**.
- From the ashes of Netscape, [Firefox](assets/html5/nytimes-firefox-final.pdf) starts to gain market share.
- Eventually, browsers decided to work together, and we now have a **much better** web landscape!

Expand Down Expand Up @@ -139,7 +139,7 @@ The content of a tag is everything between the opening and closing tags:
<p>Some content</p>
```

It can be text, but is can also be other tags:
It can be text, but it can also be other tags:

```html
<article>
Expand Down Expand Up @@ -201,7 +201,7 @@ The **id** and **class** attributes are used to easily identify a tag for manipu
An HTML document **cannot** have two elements with the same **id**:

```html
<img id="logo" src="logo.png>
<img id="logo" src="logo.png">
```

An HTML element can have more than one **class** (separated by whitespace).
Expand Down Expand Up @@ -895,8 +895,8 @@ They are very useful to set the *class* of each column without having to do it i

---

template:inverse
name:forms
template: inverse
name: forms
# Forms

---
Expand Down Expand Up @@ -1144,7 +1144,7 @@ Upload: <form action="upload_file.php" method="post" enctype="multipart/form-dat

# Hidden Input

Inputs with type <a href"https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type=hidden)">hidden</a> are not shown and are not meant to be changed by the user.
Inputs with type <a href="https://html.spec.whatwg.org/multipage/input.html#hidden-state-(type=hidden)">hidden</a> are not shown and are not meant to be changed by the user.

```html
<input type="hidden" name="username" value="mightymouse">
Expand Down