When considering CSS for web development remember that different web browsers interpret CSS in different ways. There are plenty of online resources to fully support your development process. The inclusion of style sheets help you implement presentation and layout very easily and change it with just as much ease.

CSS can of course be applied in HTML and there are many ways to embed it.

There are three methods for embedding CSS into HTML:

  • Internal

This type of styling is fixed at the head of the document and the CSS is contained in the style element.

  • External

This involves calling stylesheets by using HTML elements or linking or simply a CSS property.

  • Inline

When using inline each element can have its own styling.