Skip to content

Commit 3d5e0c9

Browse files
author
John Stallo
committed
Typo (html 'head' element, not header)
1 parent 9873c04 commit 3d5e0c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

connected-environment/get-started-nodejs-03.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ If you open the web app on a mobile device, you will notice that the UI does not
3030

3131
To fix this, we'll add a `viewport` meta tag:
3232
1. Open the file `./public/index.html`
33-
1. Add a `viewport` meta tag in the existing `header` tag:
33+
1. Add a `viewport` meta tag in the existing `head` element:
3434

3535
```html
36-
<header>
36+
<head>
3737
<!-- Add this line -->
3838
<meta name="viewport" content="width=device-width, initial-scale=1">
39-
</header>
39+
</head>
4040
```
4141

4242
1. Save the file.

0 commit comments

Comments
 (0)