CLASSROOM 1

303.674.6700

Our recommended book list:

  • The "Adobe Classroom in a book", InDesign, Photoshop and Illustrator 
  • Lynda Weinman's web design books 
  • Design Wow books by Jack Davis and Susan Merritt 
  • Visual Quickstart Guides 
  • Integrating Educational Technology into Teaching, by M. D. Roblyer

Graphics industry standard information including local Denver area contacts

www.aquent.com  All media and visual designers job placement resource which has local state contacts

www.adobe.com
  Adobe software products and training for all graphic needs

www.peachpit.com  All media and visual designers books and training resources

www.apple.com  The official website for all Apple products

www.useit.com  Excellent web useability resource newsletter and books concerning the Internet and web

www.aiga.com/colorado  American Institute on Graphic Arts—has a local club in Denver, Colorado, networking and great speakers

www.pantone.com  World-renowned authority on color, products and guides for accurate color printing plus leading technology for accurate visual communications

www.xpedex.com  The world's largest distributor of printing papers, graphic supplies and equipment in North America and has local outlet stores to sample paper for every printing project you would ever need

Very cool websites to check out
http://psd.tutsplus.com/WPsdtuts+ is a blog/Photoshop site made to house and showcase some of the best Photoshop tutorials around. We publish tutorials that not only produce great graphics and effects, but explain the techniques behind them in a friendly, approachable manner.ebsite design information, tips and notes. Plus there are great links to other information, tutorials, etc.

http://vector.tutsplus.com/  Vectortuts+ is a blog of tutorials, articles, freebies and more on all things vector! We publish tutorials on techniques and effects to make awesome vector graphics in programs like Adobe Illustrator and Inkscape. Our authors and writers work all over the industry. Most of the content is free, but you can also grab a premium Vector Plus membership and get access to special extras as well as source files for the tutorials. And if you’re interested in writing a tutorial, then you can submit your ideas and we’ll pay $150 for any published tutorials!

Test the bit depth-in control panels/moniters
 

——
——————————————————

24 bit=16.7+ million colors

16 bit=65.5 thousand 

15 bit=32.8 thousand 

8 bit =256 

7 bit=128 

6 bit =6

5 bit=32 

4 bit =16 

3 bit=8

2 bit =4 

          1 bit=2

Web Design Information ——————————————————————————————

When many colors-artwork/photos are saved as "myimage.jpg" they should be=24 bit and can be logos with many colors or a photo 

Or "myimage.gifs" could be 8 bit or less=lineart/type graphics, transparent (jpg to gif) and in 8 bit adaptive palette - to create solid color 

Naming conventions-are to be consistent such as page1.html, page2.html and not pg1.html, page2.html, with no spaces, etc. 

No interlacing=for quality graphic or photo images - it is blocky or fuzzy and downloads to clear but it's annoying, chunks when loading

jpg=joint photographic experts group has no dithering, compresses photos, is lossy, is seen as low quality, is progressive for jpgs that interlace-may not be supported be all browsers, will be optimized as a medium size file 

gif=graphic interchange format=photos for animation-have transparency (outlines the graphic) and has interlacing, graphics work well in this format, 1/8 th load time 

png= portable network graphic, fast 1/64 load time

HTML Primer: Raggett's 10 minute ——————————————————————————— Guide to HTML
This is a short introduction to writing HTML. Many people still write HTML by hand using tools such as NotePad on Windows, or SimpleText on the Mac. This guide will get you up and running. Even if you don't intend to edit HTML directly and instead plan to use an HTML editor such as Netscape Composer, or W3C's Amaya, this guide will enable you to understand enough to make better use of such tools and how to make your HTML documents accessible on a wide range of browsers.

Start with a title (you could cut and paste the below copy to a browser to see and replace copy) Every HTML document needs a title. Here is what you need to type: 

<title>My first HTML document</title> 

Change the text from "My first HTML document" to suit your own needs. The title text is preceded by the start tag <title> and ends with the matching end tag </title>. The title should be placed at the beginning of your document. 

Add headings and paragraphs 

If you have used Microsoft Word, you will be familiar with the built in styles for headings of differing importance. In HTML there are six levels of headings. H1 is the most important, H2 is slightly less important, and so on down to H6, the least important. 

Here is how to add an important heading: 

<h1>An important heading</h1> 

and here is a slightly less important heading: 

<h2>A slightly less important heading</h2> 

Each paragraph you write should start with a <p> tag. The </p> is optional, unlike the end tags for elements like headings. For example: 

<p>This is the first paragraph. 

<p>This is the second paragraph. 

Adding a bit of emphasis: You can emphasise one or more words with the <em> tag, for instance: 

This is a really <em>interesting</em> topic! 

Adding interest to your pages with images 

Images can be used to make your Web pages distinctive and greatly help to get your message across. 

The simple way to add an image is using the <img> tag. Let's assume you have an image file called "peter.jpeg" in the same folder/directory as your HTML file. It is 200 pixels wide by 150 pixels high. 

<img src="peter.jpeg" width="200" height="150"> 

The width and height aren't strictly necessary but help to speed the display of your Web page. 

Something is still missing! People who can't see the image need a description they can read in its absence. You can add a short description as follows: 

<img src="peter.jpeg" width="200" height="150" 

alt="My friend Peter"> 

The alt attribute is used to give the short description, in this case "My friend Peter". For complex images, you may need to also give a longer description. Assuming this has been written in the file "peter.html", you can add one as follows using the longdesc attribute: 

<img src="peter.jpeg" width="200" height="150" 

alt="My friend Peter" longdesc="peter.html"> 

You can create images in a number of ways, for instance with a digital camera, by scanning an image in, or creating one with a painting or drawing program. Most browsers understand GIF and JPEG image formats. To avoid long delays while the image is downloaded over the network, you should avoid using large image files. 

Adding links to other pages 

What makes the Web so effective is the ability to define links from one page to another, and to follow links at the click of a button. A single click can take you right across the world! 

Links are defined with the <a> tag. Lets define a link to the page defined in the file "peter.html": 

This a link to <a href="peter.html">Peter's page</a>. 

The text between the <a> and the </a> is used as the caption for the link. It is common for the caption to be in blue underlined text. 

To link to a page on another Web site you need to give the full Web address (commonly called a URL), for instance to link to www.w3.org you need to write: 

This is a link to <a href="http://www.w3.org/">W3C</a>. 

Three kinds of lists: 

HTML supports three kinds of lists. The first kind is a bulletted list, often called an unordered list. It uses the <ul> and <li> tags, for instance: 

<ul> 

<li>the first list item 

<li>the second list item 

<li>the third list item

</ul> 

Note that you always need to end the list with the </ul> end tag, but that the </li> is optional and can be left off. The second kind of list is a numbered list, often called an ordered list. It uses the <ol> and <li> tags. For instance: 

<ol> 

<li>the first list item 

<li>the second list item 

<li>the third list item 

</ol> 

Like bulletted lists, you always need to end the list with the </ol> end tag, but the </li> end tag is optional and can be left off. 

The third and final kind of list is the definition list. This allows you to list terms and their definitions. This kind of list starts with a <dl> tag and ends with </dl> Each term starts with a <dt> tag and each definition 

starts with a <dd>. For instance: 

<dl>

<dt>the first term 

<dd>its definition 

<dt>the second term 

<dd>its definition 

<dt>the third term 

<dd>its definition 

</dl> 

As you can see the end tags </dt> and </dd> are optional and can be left off. Note that lists can be nested, one within another. For instance: 

<ol> 

<li>the first list item 

<li>the second list item 

<ul> 

<li>first nested item 

<li>second nested item 

</ul> 

<li>the third list item 

</ol> 

You can also make use of paragraphs and headings etc. for longer list items.
 
Back to the top


Revised 2/09 Copyrigh
Revised 6/10 copyright by marshaokeefe.comt by marshaokeefe.com