What is a responsive web page? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is a responsive web page?

The meaning and purpose of responsive web design

20th Jun 2018, 6:04 AM
Hasnat ul haq
Hasnat ul haq - avatar
3 Answers
+ 4
A web page should look good and behave in the same way on any device (phones, tablets, desktops) When making responsive web pages, add the following <meta> element “viewport” in all your web pages: <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> This will give the browser instructions on how to control the page's dimensions and scaling. read more: https://www.w3schools.com/html/html_responsive.asp
20th Jun 2018, 6:16 AM
asa22
+ 2
Unlike in the past there is a huge lot of different devices and screens out there today, so basicly the idea of the responsive web is to make the content/webpage flexible and adoptable to look good on any screen (e.g. smartphone and 5k retina). More: https://www.w3schools.com/html/html_responsive.asp
20th Jun 2018, 6:16 AM
spotbot2k
spotbot2k - avatar
+ 2
Hasnat ul haq a responsive webpage ,is a web page that "adapts" to any size of screen. Meaning whether you are using a 1000 x 800 inches or a 320 x240 inches screen a responsive web page will always look great
20th Jun 2018, 6:38 AM
Dlite
Dlite - avatar