Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: HTML CSS
Description: Learn HTML in easy way with example

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


HTML CSS
CSS can be added to HTML elements in 3 ways:




Inline - by using the style attribute in HTML elements
Internal - by using a


This is a heading


This is a paragraph
...
css">


This is a heading


This is a paragraph
...
css" looks:

body {
background-color: powderblue;
}
h1 {
color: blue;
}
p {
color: red;
}

CSS Fonts





This is a heading


This is a paragraph


Title: HTML CSS
Description: Learn HTML in easy way with example