Which markup should you add to the web page?

You have a web page that contains the following markup.

You need to ensure that css1.css is used only when the current browser width is less than 800px.
Which markup should you add to the web page?

You have a web page that contains the following markup.

You need to ensure that css1.css is used only when the current browser width is less than 800px.
Which markup should you add to the web page?

A.
@media=”(max-width: 800px)”

B.
@max-width=”800px”

C.
media=”(max-width: 800px)”

D.
max-width=”800px”



Leave a Reply 7

Your email address will not be published. Required fields are marked *


safaa

safaa

maybe you mean attribute not markup, so the answer is c. media=”(max-width: 800px)”

lully

lully

the answer is not clear… it’s seems the right answer is: @media (max-width: 800px) because the answer ask: Which markup should you add to the web page? and not property on link element, but tehre’s no answer like @media (max-width: 800px)….

Repo

Repo

It would be right without ‘=’ sign.

Simone

Simone

@media is used into css, but inline tag used response C