microjs/microjs.com

microjs.com site broken!

Closed this issue · 0 comments

microjs.com is using this invalid viewport meta:

<meta name="viewport" content="width=device-width; initial-scale=0.45">

It's invalid because of the semicolon. There should be a comma.

Correct code:

<meta name="viewport" content="width=device-width, initial-scale=0.45">