Need help to make this page responsive

http://cellpage.co.in/Cell/Gallery

This linked page is not working in mobile responsive at it is appearing in very small size so need to know what i have to do to make it responsive.

Your mobile viewport is a fixed size:

<meta name="viewport" content="width = 1050, user-scalable = no" />

You need to use a responsive viewport instead. The usual one is this:

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

That’s just the start of it though: it looks to me like everything else on the page is using fixed sizes in pixels, and those will have to be adjusted to use percentages as well. It’s a pretty slideshow, but given the name it’s ironic how useless it is on a cell phone. And that’s just one of many issues plaguing that site.