I'm struggling with a school assignment that is asking me to compare two different ways of linking a print stylesheet with another stylesheet in HTML. The assignment requires me to explain when each technique would be appropriate:
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen” />
<link rel="stylesheet" type="text/css" href="print.css" media="print” />
or
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="all” />
<link rel="stylesheet" type="text/css" href="print.css" media="print” />
If anyone could offer some guidance on the distinction between using "screen" and "all" in conjunction with a separate print stylesheet, I would greatly appreciate it.