Skip to content

Commit

Permalink
Use <!doctype html> instead of <!DOCTYPE html>
Browse files Browse the repository at this point in the history
Return back to the lowercase doctype in order to be more consistent
with the lowercase of the html tags.

References:

  * #1522
  * http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#the-doctype

Close #1522.
  • Loading branch information
alrra committed Apr 2, 2014
1 parent 06b4df4 commit e67e9cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### HEAD

* Use `<!doctype html>` instead of `<!DOCTYPE html>`
([#1522](https://github.com/h5bp/html5-boilerplate/issues/1522)).
* Update to Normalize.css 3.0.1.
([#1050](https://github.com/h5bp/html5-boilerplate/issues/1050)).
* Add `/browserconfig.xml` file and tile images
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
Expand Down

0 comments on commit e67e9cc

Please sign in to comment.