Search This Blog

Tuesday, March 28, 2017

CSS Basics

Tutorial

Cascading Style Sheets can help to unify site design.
Here are some tips:

HTMLGoodies.com


See all Topics

Tuesday, March 14, 2017

Bullets and HTML

Some code


Bullets aren’t too difficult to create using HTML.

<ul>

<li>Apples</li>

<li>Pears</li>

<li>Bananas</li>

<li>Grapes</li>

</ul>

Here’s an article that goes into more detail:


Cryer.co.uk


See all Topics

Monday, March 06, 2017

Low Down Footer

CSS code


How to create a CSS footer that remains at the bottom of the page, regardless of content.

CSSStickyFooter.com


See all Topics