Responsive Web Design - Introduction

CSS is the language we use to style an HTML document.
CSS describes how HTML elements should be displayed.
This tutorial will teach you CSS from basic to advanced.
Post Reply
Guest

Responsive Web Design - Introduction

Post by Guest »

Responsive Web Design - Introduction


What is Responsive Web Design?
Responsive web design makes your web page look good on all devices.
Responsive web design uses only HTML and CSS.
Responsive web design is not a program or a JavaScript.

Designing For The Best Experience For All Users
Web pages can be viewed using many different devices: desktops, tablets, and phones.
Your web page should look good, and be easy to use, regardless of the device.

Web pages should not leave out information to fit smaller devices, but rather adapt its content to fit any device:





Desktop




Tablet




Phone


It is called responsive web design when you use CSS and HTML to resize, hide, shrink, enlarge, or move the content to make it look good on any screen.
Don't worry if you don't understand the example below, we will break down the code, step-by-step, in the next chapters:


Try it Yourself »















+1

Reference: https://www.w3schools.com/css/css_rwd_intro.asp
Post Reply