First page Back Continue Last page Image
- 1) Linking - You create a CSS file that each page of your website links to, thus creating a consistent look to your entire site.
- 2) Embedding - You include the style sheet in the <head> section of a specific page. This will define the look of a single page.
- 3) Inline - This allows you to apply styles to a section of a group of tags on a page. (This allows a 1 for 1 replacement of html style properties)
- The 3 Style Sheet Implementation Methods
- <html>
- <head>
- <style>
- css goes here
- </style>
- </head>
- <body>
- </body>
- </html>
- <b style="font-size:120%">Attention!!</b>