When creating a responsive web design, the first thing you m…

When creating a responsive web design, the first thing you must do is to add a meta tag to your HTML to set the viewport of your page, which will give the browser instructions on how to control the page’s dimensions and scaling. The recommended meta tag is:

In order for this media query to evaluate to true (and chang…

In order for this media query to evaluate to true (and change the background and font colors), how many of the three conditions must be true? @media screen and (min-width: 30em) and (orientation: landscape) {  body {    background-color: black;    color: white;  } }