Skip to content

Commit d5ff7f6

Browse files
aelmizebemilk
andauthored
Fix HTML meta tag position (#194)
`<meta>` tags are outside the `<head>`, this is invalid HTML and may cause inconsistent behavior across browsers Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
1 parent 203708a commit d5ff7f6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
22
<html>
3-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4-
5-
<!-- Disable zooming: -->
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
7-
83
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
6+
<!-- Disable zooming: -->
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
8+
99
<!-- change this to your project name -->
1010
<title>eframe template</title>
1111

0 commit comments

Comments
 (0)