How to use < link > tag with media attribute with example
How to use link tag with media attribute with example
Syntax of media attribute in HTML
<link media="value">
Example
<head>
<link rel="stylesheet" type="text/css"
href="firstscreen.css">
<link rel="stylesheet" type="text/css" href="secondscreen.css"
media="thirdscreen">
</head>
Comments
Post a Comment