Making a Mobile friendly website [closed]

I appreciate you taking the time to try and better your understanding of the web, however I’d like to ask that you take some time to write thoughtful grammatically correct questions in the future.

That being said:

Yes, it is done in html, javascript, and css as is everything on the web. You can do it yourself using the “screen” Media Query or you can use frameworks such as Bootstrap or Foundation which allow you to build mobile friendly websites in a very easy and intuitive fashion.

The screen media query allows you to apply css based on the size of
the screen.

Example (click full page to see change):

button{
  font-size: 30px;
}

@media screen and (max-width: 700px) {
        button{
            font-size: 12px;

        }
    }
<button>Test</button>

If you’re interested and becoming a better mobile developer; I’d recommend that you download one of these frameworks, follow a few tutorials, and play around with them for a bit, and then once you’ve seen how they work try writing your own simpler version using the css media queries.

Leave a Comment