Upgrade to Pro — share decks privately, control downloads, hide ads and more …

DAA Web Design and WordPress

Will Moyer
April 19, 2013

DAA Web Design and WordPress

# References

## Text Editors
- http://macromates.com/
- http://notepad-plus-plus.org/
- http://www.sublimetext.com/2
- http://net.tutsplus.com/tutorials/tools-and-tips/sublime-text-2-tips-and-tricks/
- http://www.barebones.com/products/bbedit/index.html?utm_source=thedeck&utm_medium=banner&utm_campaign=bbedit

## HTML/CSS
- https://developer.mozilla.org/en-US/
- http://www.dontfeartheinternet.com/
- http://learn.shayhowe.com/html-css/
- http://learnlayout.com/
- http://learncss.tutsplus.com/
- http://www.codecademy.com/tracks/web

## Color Theory
- http://www.quora.com/Color-and-Colors/Is-there-a-science-to-picking-the-colors-that-work-well-together-in-a-design-or-is-it-just-subjective
- http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/
- https://kuler.adobe.com/
- http://www.colourlovers.com/

## Gestalt Principles
- http://www.andyrutledge.com/gestalt-principles-1-figure-ground-relationship.php
- http://www.andyrutledge.com/gestalt-principles-2-similarity.php
- http://www.andyrutledge.com/gestalt-principles-3.php
- http://www.andyrutledge.com/common-fate.php
- http://www.andyrutledge.com/closure.php

## Typography
- http://markboulton.co.uk/journal/five-simple-steps-to-better-typography
- http://webtypography.net/
- http://www.informationarchitects.jp/en/100e2r/
- http://coding.smashingmagazine.com/2011/03/14/technical-web-typography-guidelines-and-techniques/
- http://willmoyer.com/double-spacing-after-periods/
- http://quotesandaccents.com/
- http://copypastecharacter.com/
- http://www.google.com/fonts/

## Markdown
- http://en.wikipedia.org/wiki/Markdown
- http://daringfireball.net/projects/markdown/basics

## WordPress
- http://themeforest.net/
- http://www.elegantthemes.com/gallery/

Will Moyer

April 19, 2013
Tweet

More Decks by Will Moyer

Other Decks in Design

Transcript

  1. <html> <body> <h1>DAA Web Design Workshop</h1> <p>You're currently in the

    workshop right now! And you're reading HTML without freaking out. You go, Glen Coco!</p> <p>Just a reminder: your instructor accepts tips in the form of beers and burritos.</p> </body> </html>
  2. <html> <body> <h1>DAA Web Design Workshop</h1> <p>You're currently in the

    workshop right now! And you're reading HTML without freaking out. You go, Glen Coco!</p> <p>Just a reminder: your instructor accepts tips in the form of beers and burritos.</p> </body> </html>
  3. body { background: black; color: white; text-align: center; font-family: sans-serif;

    } h1 { margin-top: 100px; margin-bottom: 50px; font-size: 60px; } .note { font-size: 12px; }
  4. <html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <h1>DAA Web Design

    Workshop</h1> <p>You're currently in the workshop right now! And you're reading HTML without freaking out. You go, Glen Coco!</p> <p class="note">Just a reminder: your instructor accepts tips in the form of beers and burritos.</p> </body> </html>
  5. body { background: black; color: white; text-align: center; font-family: sans-serif;

    } h1 { margin-top: 100px; margin-bottom: 50px; font-size: 60px; } .note { font-size: 12px; }
  6. “Anything from 45 to 75 characters is widely regarded as

    a satisfactory length of line for a single-column page set in a serifed text face in a text size. The 66-character line (counting both letters and spaces) is widely regarded as ideal. For multiple column work, a better average is 40 to 50 characters.” ❧ROBERT BRINGHURST
  7. Set text ragged right, not justified. Lorem ipsum dolor sit

    amet, consectetur adipiscing elit. Praesent magna tellus, faucibus sed dapibus at, adipiscing sed urna. Nam lacinia libero in turpis imperdiet eu vulputate diam pellentesque. Proin at nunc erat. In lorem arcu, facilisis sed molestie quis, blandit in magna. Nam interdum semper commodo. Donec vestibulum, risus in ultrices dignissim, tellus tellus rutrum metus, id pretium enim erat in nulla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent magna tellus, faucibus sed dapibus at, adipiscing sed urna. Nam lacinia libero in turpis imperdiet eu vulputate diam pellentesque. Proin at nunc erat. In lorem arcu, facilisis sed molestie quis, blandit in magna. Nam interdum semper commodo. Donec vestibulum risus in ultrices dignissim, tellus tellus rutrum metus, id pretium enim erat in nulla.
  8. ### Markdown Markdown a code shorthand, a formatting syntax. It

    allows you to write *readable* plain text that can then be converted into HTML (and other formats like PDF). You can read more about Markdown [here](http://en.wikipedia.org/wiki/Markdown).