Bootstrap: Responsive does not work with hosted site

0

I am doing a tcc for my technical course and as one of the requirements was to make a site responsive, I decided to use the bootstrap, however, when I hosted the site, it presented some problems.

When I open my site on my mobile phone locally, as in the screenshot below, it usually works the responsive part.

When I open it in place, it looks like the image below.

Can anyone help me?

    
asked by anonymous 23.11.2017 / 18:23

1 answer

0

It seems to be the same problem that I found in my TCC months ago. You can put these three tags in your head (special attention to viewport )?

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
...
</head>
    
24.11.2017 / 19:15