CSS Tutorials

Articles of Tutorials for CSS

Applying CSS

There are three ways to apply CSS (Cascading Style Sheets) to HTML. In-line In-line styles are plonked straight into the HTML tags using the style attribute. They look something like this: p style="color:red">text</p> This will make that specific paragraph red. But, if you remember, the best-practice approach is that the HTML should be a stand-alone, presentation free document, and so...

Read More