A set of guides to help get a website setup.

read more
Resources for creation

http://css-tricks.com/video-screencasts/29-google-search-for-your-site/

http://css-tricks.com/video-screencasts/31-introduction-to-google-analytics/


Z-index tutorial (Done):

Tips: higher z-index are on top. For a z-index to be applied to an element, it has to have some sort of position defined (like relative for instance). 

http://css-tricks.com/video-screencasts/40-how-z-index-works/

Floats: (done)

Tips: So first off, floats are a nice way of positioning things because you can just pop them in there and they'll sort of organize themselves. I think you typically will organize them in rows so you'll have rows of content and within a row, you float stuff to the right, left, etc. One way you can essentially drop out of a row is doing "clear: both". A common problem is if you have some background or something that contains things that are floating, it may not stretch to cover your floats. You can solve this by doing: overflow: auto. Or overflow: hidden. The clearfix that's everywhere is another way to solve this problem. 

http://css-tricks.com/video-screencasts/42-all-about-floats-screencast/

Domains, DNS, hosting (done):

Tips: You can use google apps to host the mail for a custom domain. Only thing is that it's no longer free and costs $5/month.  

http://css-tricks.com/video-screencasts/46-domains-dns-hosting-and-google-apps/

Tables: 

http://css-tricks.com/video-screencasts/61-basic-table-styling/

CSS3 (half-done, not too interesting, mostly already learned): 

http://css-tricks.com/video-screencasts/57-using-css3/

CSS Position values: (Done)

Tips: Everything is defaulted to static which makes it lay in the format it's put in on the html. Just setting an element to relative won't do anything, but then putting top: 20px or something will change the element's position relative to where it would be without any position defined. Absolute means that you're defining the position on the screen exactly so long as the element isn't nested inside of something that's relative. If you have something that's absolute inside something that's relative, the absolute will position as if its parent element were the screen (so you're positioning within the parent). Finally, fixed just makes it stay at the same location on the screen no matter what. So like a navbar that stays in the same place even when you scroll down.  

http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/

Make site faster (done): 

Gzipping is really important. Have to modify the htaccess file and it'll zip the files before sending them and the computer will unzip essentially just all around decreasing server response time/download time. http://incident57.com/codekit/ looks good. Optimize images. CSS and Javascript all instantly. Just download it and use it. 

http://css-tricks.com/video-screencasts/114-lets-do-simple-stuff-to-make-our-websites-faster/

The thing Tara was complaining about: 

http://www.youtube.com/watch?v=rTOKoS6rqbc&feature=player_embedded