< Previous - CSS Syntax | Quick CSS Course (5 days) | Beginning CSS Articles | Next - Modify Fonts with CSS >
Inline Styles:
Inline styles are added directly to the element to be styled with the style attribute:
<p style="color: red;">
Internal Style Sheets:
Internal style sheets are added to the <head> of a document inside <style> tags:
<style type="text/css">
<!--
p { color: red; }
-->
</style>
External Style Sheets:
External style sheets are the most flexible because they allow you to assign the same styles to multiple Web pages. You can attach external style sheets in two ways:
<link rel="stylesheet" type="text/css" href="styles.css" />
@import url(addonstyles.css);

