Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>External Style Sheet Example 1</title>
- <link rel="stylesheet" href="external10.css">
- </head>
- <body>
- <h1>External Cascading Style Sheet</h1>
- <p>Also known as "external style sheet". A seperate file from the html document. The file extension is .css.</p>
- <h2>Remember</h2>
- <p>An external style sheet is NOT an html file. It only contains CSS, there are no other structures in the code.</p>
- <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>
- </body>
- </html>
Advertisement