'basefont' sets a default font face, size, and style for an entire web page : basefont « Meta Tags « HTML / CSS






'basefont' sets a default font face, size, and style for an entire web page

    
<html>
   <head>
      <title>basefont element example</title>
      <basefont face="Times, serif" size=5>
   </head>
   <body>
      <p>Set by base font.
         <font face="Courier, serif" size=5 color="blue"> 
         new Font.
         </font>
      </p>   
   </body>
</html>
           
      
      








Related examples in the same category