diff options
| author | XhmikosR <[email protected]> | 2017-10-03 19:34:59 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-03 19:34:59 +0300 |
| commit | ee574b76a7274366a56b84b98f83e2b1b7b00122 (patch) | |
| tree | bd0b1c18d78bfed6d70ff0f7eb86468d44f28f2f /docs/4.0/getting-started | |
| parent | 527f55c2f3fecfbc1e991263d646a32de4ffcded (diff) | |
| download | bootstrap-ee574b76a7274366a56b84b98f83e2b1b7b00122.tar.xz bootstrap-ee574b76a7274366a56b84b98f83e2b1b7b00122.zip | |
Switch to lowercase `doctype`. (#24217)
Having it uppercase doesn't offer anything and the lowercase version slightly improves gzip compression.
Diffstat (limited to 'docs/4.0/getting-started')
| -rw-r--r-- | docs/4.0/getting-started/introduction.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/getting-started/introduction.md b/docs/4.0/getting-started/introduction.md index 29b8e7af1..8a3badc8d 100644 --- a/docs/4.0/getting-started/introduction.md +++ b/docs/4.0/getting-started/introduction.md @@ -56,7 +56,7 @@ Curious which components explicitly require jQuery, our JS, and Popper.js? Click Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this: {% highlight html %} -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <title>Hello, world!</title> @@ -90,7 +90,7 @@ Bootstrap employs a handful of important global styles and settings that you'll Bootstrap requires the use of the HTML5 doctype. Without it, you'll see some funky incomplete styling, but including it shouldn't cause any considerable hiccups. {% highlight html %} -<!DOCTYPE html> +<!doctype html> <html lang="en"> ... </html> |
