Media Query
Hi,
In the image below, Mobile View is seen on "Chrome on Desktop".
But it's not seen on "Chrome on iPhone".
How to fix the problem?
(I want to make Mobile View seen on iPhone.)
Hosun Kang

Hi,
In the image below, Mobile View is seen on "Chrome on Desktop".
But it's not seen on "Chrome on iPhone".
How to fix the problem?
(I want to make Mobile View seen on iPhone.)
Hosun Kang

You're missing the viewport meta tag for mobile devices.
Change your code on lines 1 - 5 from this:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Roar Cycling</title>
to this:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Roar Cycling</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.