Syntax error How to specify the target media within the document language with CSS

How to specify the target media within the document language with CSS



To specify the target media, use the media attribute −

Example

<style>
   <!--
      <!doctype html public "-//w3c//dtd html 4.0//en">
      <html>

         <head>
            <title>link to a target medium</title>
            <link rel="stylesheet" type="text/css" media="print, handheld" href="foo.css">
         </head>

         <body>
            <p>the body...
         </body>

      </html>
   -->
</style>
Updated on: 2020-03-16T07:13:23+05:30

111 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements