Add lang attribute to html template

I got warning in Visual Studio Code saying

```
The head element represents a collection of metadata for the Document.

A11y: <html> element should have a lang attributesvelte(a11y-missing-attribute)
```

And this fix the problem
This commit is contained in:
Muhammad Muhajir
2019-04-26 11:23:26 +07:00
committed by Conduitry
parent 143a39e7e5
commit f6189b4727

View File

@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1.0'>