Skip to content

Commit

Permalink
fix: add language to html in quick-start.md (electron#41225)
Browse files Browse the repository at this point in the history
Add language to html in quick-start.md

We must define language in HTML for different reasons (accessibility++)
  • Loading branch information
BogdanCerovac authored Feb 8, 2024
1 parent 2ea569e commit 42087e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/tutorial/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ folder of your project:

```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
Expand Down Expand Up @@ -420,9 +420,8 @@ window.addEventListener('DOMContentLoaded', () => {

```html
<!--index.html-->

<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
Expand Down

0 comments on commit 42087e3

Please sign in to comment.