HTML

practice10.html

Feb 24th, 2017
160
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>External Style Sheet Example 1</title>
  6. <link rel="stylesheet" href="external10.css">
  7. </head>
  8. <body>
  9. <h1>External Cascading Style Sheet</h1>
  10. <p>Also known as "external style sheet". A seperate file from the html document. The file extension is .css.</p>
  11. <h2>Remember</h2>
  12. <p>An external style sheet is NOT an html file. It only contains CSS, there are no other structures in the code.</p>
  13. <p>External CSS is great for using the same CSS on multiple pages. You would change the CSS one time, and it will change on all of the HTML files linked to that external file.</p>
  14. </body>
  15. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment