Which of the following media features can be used in defining a media query? Options min-width speech orientation frame max-height code example
Example: media query methods
1. @media print
{
p
{
font-family: georgia,montserrat;
}
}
2. <link rel="stylesheet" media="screen"
href="/css/screen_version.css">
3. @import "screenstyles.css" screen;