Elroy Dayan
Elroy Dayan

Reputation: 43

Make Mobile version for web same as the web just smaller

I'm currently working on a mobile version for a website iv'e built , It's abit of problem to create a different subdomain and folder and build a total new mobile version since it hasn't requested.

How can I make the website be exactly the same but fit 100% in the Mobile screen? Once I enter the website via mobile , I just see the logo because it's big enough to fit 90% of the screen.

The thing is , I can't create a specific mobile version , I just want the web to look exactly like on PC just extremely small.

Upvotes: 0

Views: 135

Answers (1)

Kevin Lynch
Kevin Lynch

Reputation: 24703

Put a viewport meta tag in the <head> of your html document

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

Upvotes: 2

Related Questions