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:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user