HTML |
|
Code |
Information |
| <img> | displays an image |
| <a> | anchor tag. use the property href="" to link to something |
| <h1><h2>... | header tags. use for titles |
| <p> | creates a new paragraph |
| <table> | creates a table ( <tr> defines a table row ) ( <td> defines a table cell ) |
| <div> | defines a divison/section |
| <br /> | inserts a single line break |
CSS |
|
Code |
Information |
| background-color | self explanitory |
| background-image | sets the background to an image instead of a color |
| font-family | sets the font type |
| font-size | sets the size of the font |
| text-align | align text center, left or right |
| width | sets the width, in pixels (px) or percent (%) |
| height | sets the height, in pixels (px) or percent (%) |