Example of HTML External Style Sheet - HTML CSS HTML

HTML CSS examples for HTML:Tag Style

Description

Example of HTML External Style Sheet

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML External Style Sheet</title> 
  <link rel="stylesheet" type="text/css" href="../css/style.css"> 
 </head> <!--from  w w w. j  a  v a2  s .  c o  m-->
 <body> 
  <h1>Linking External Style Sheet</h1> 
  <p>The styles of this HTML document are defined in linked style sheet.</p>   
 </body>
</html>

Related Tutorials