Make HTML in docs valid

You were missing an `<html>`-starter tag,  so users who copy-pasted the code would have experienced errors - not a very good first impression…
(Furthermore, I changed `<!doctype html>` to `<!DOCTYPE html>`since that's just more common)
This commit is contained in:
MoPaMo
2021-05-26 12:52:45 +02:00
committed by GitHub
parent c690629502
commit e304cb5dca

View File

@@ -2,7 +2,8 @@
For testing purposes or demos, use our [Skypack](https://www.skypack.dev/) CDN builds. Here are the few lines of code you need to get started: For testing purposes or demos, use our [Skypack](https://www.skypack.dev/) CDN builds. Here are the few lines of code you need to get started:
```html ```html
<!doctype html> <!DOCTYPE html>
<html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
</head> </head>