HTML CSS examples for HTML:Tag Style
Example of HTML External Style Sheet
<!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>