WEB – How To

Link to more TECH TIPS  ||  INSPIRATION

GENERAL RESOURCES TO BOOKMARK

TUTORIALS

CSS

  • How to center an image within a div In css add this:
    img.center {
        display: block;
        margin-left: auto;
        margin-right: auto; }

    and then in your html: <img src=”IMAGENAME” class=”center”>
    For more info on Centering Things, go to this link.

  • To set top and left margin at 0, put this in your CSS:
    *{ margin: 0; padding: 0;}
  • A useful CSS Cheatsheet. [If you don’t like this one, here is a link to more.]
  • Read this about 30 CSS selectors you must know
  • CSS Typechart 
  • DIV HELP: Floats Tutorials
  • Link to a more detailed CSS page for the basics

MISC

JAVASCRIPT

ADVANCED & For the Curious

BEGINNING INFO

  • Set up i5 acct. and download fetch > info here
  • Hyper Text Markup Language (HTML) Tutorials. (skip tables & forms)
  • CSS (Cascading Style Sheets) defines HOW (X)HTML elements are to be displayed.

more added all the time…