Creating Web Sites An introduction to the basics.

40
Creating Web Sites An introduction to the basics

Transcript of Creating Web Sites An introduction to the basics.

Page 1: Creating Web Sites An introduction to the basics.

Creating Web Sites

An introduction

to the basics

Page 2: Creating Web Sites An introduction to the basics.

Creating web sites is…

Content50%

Style5%

Presentation20%

Programming25%

Page 3: Creating Web Sites An introduction to the basics.

Step One: Content

Page 4: Creating Web Sites An introduction to the basics.

Step One: Content

Brainstorm Your Objective

Page 5: Creating Web Sites An introduction to the basics.

Step One: Content

Brainstorm Your Objective– What do you want to accomplish?

Page 6: Creating Web Sites An introduction to the basics.

Step One: Content

Brainstorm Your Objective– What do you want to accomplish?– How can you make your site unique, special and

useful?

Page 7: Creating Web Sites An introduction to the basics.

Step One: Content

Brainstorm Your Objective– What do you want to accomplish?– How can you make your site unique, special and

useful?– What elements and features do you want on your

site?

Page 8: Creating Web Sites An introduction to the basics.

Step One: Content

Brainstorm Your Objective– What do you want to accomplish?– How can you make your site unique, special and

useful?– What elements and features do you want on your

site?– What potential problems do you see between you

and your goal?

Page 9: Creating Web Sites An introduction to the basics.

Step One: Content (cont.)

Research Your Target Group

Page 10: Creating Web Sites An introduction to the basics.

Step One: Content (cont.)

Research Your Target Group– Find out about your potential audience

Page 11: Creating Web Sites An introduction to the basics.

Step One: Content (cont.)

Research Your Target Group– Find out about your potential audience– Talk to them!

Page 12: Creating Web Sites An introduction to the basics.

Step One: Content (cont.)

Research Your Target Group– Find out about your potential audience– Talk to them!– Continue to get feedback from them throughout the

design process

Page 13: Creating Web Sites An introduction to the basics.

Step One: Content (cont.)

Research Your Target Group– Find out about your potential audience– Talk to them!– Continue to get feedback from them throughout the

design process– Make revisions

Page 14: Creating Web Sites An introduction to the basics.

Step Two: Programming

Page 15: Creating Web Sites An introduction to the basics.

Step Two: Programming

HTML is tedious, but not complex

Page 16: Creating Web Sites An introduction to the basics.

Step Two: Programming

HTML is tedious, but not complex Learn how it works

Page 17: Creating Web Sites An introduction to the basics.

Step Two: Programming

HTML is tedious, but not complex Learn how it works View Page Source

Page 18: Creating Web Sites An introduction to the basics.

Step Two: Programming

HTML is tedious, but not complex Learn how it works View Page Source When using an HTML editor, always check the

code before publishing

Page 19: Creating Web Sites An introduction to the basics.

“Ugly” HTML from an HTML editor

<HTML> <!--This file created 8/4/98 8:31 PM by Claris Home Page version 3.0--> <HEAD> <META name=GENERATOR content="Claris Home Page 3.0"> <X-CLARIS-WINDOW top=42 bottom=757 left=4 right=534> <X-CLARIS-TAGVIEW mode=minimal> </HEAD> <BODY bgcolor="#FFFFFF"> <P><FONT size="-1">This is really small text</FONT><FONT size="-1" color="#FF0000"> that turns red </FONT><FONT size="-1" color="#000000"> and then black

again.</FONT></P> <P></P> </BODY> </HTML>

Page 20: Creating Web Sites An introduction to the basics.

“Clean” HTML created by hand

<HTML>

<HEAD></HEAD>

<BODY bgcolor="white" text="black">

<P>

<FONT size=-1>This is really small text <FONT color="red">that turns red</FONT> and then black again</FONT>

</P>

</BODY>

</HTML>

Page 21: Creating Web Sites An introduction to the basics.

Step Two: Programming (cont.)

Program for multiple browsers

Page 22: Creating Web Sites An introduction to the basics.

Step Two: Programming (cont.)

Program for multiple browsers Program for non-graphical users

Page 23: Creating Web Sites An introduction to the basics.

Step Two: Programming (cont.)

Program for multiple browsers Program for non-graphical users Avoid using frames

Page 24: Creating Web Sites An introduction to the basics.

Step Two: Programming (cont.)

Program for multiple browsers Program for non-graphical users Avoid using frames Use 3.x HTML for highest accessibility

Page 25: Creating Web Sites An introduction to the basics.

Step Two: Programming (cont.)

Program for multiple browsers Program for non-graphical users Avoid using frames Use 3.x HTML for highest accessibility

The Bottom Line:

Bad design can prevent users from accessing your web site.

Page 26: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Page 27: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Make sketches of your site

Page 28: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Make sketches of your site Make flowcharts of your site

Page 29: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Make sketches of your site Make flowcharts of your site Keep it simple and streamlined

Page 30: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Make sketches of your site Make flowcharts of your site Keep it simple and streamlined Rule of thumb: 30 seconds on 28.8 connection

Page 31: Creating Web Sites An introduction to the basics.

Step Three: Presentation

Make sketches of your site Make flowcharts of your site Keep it simple and streamlined Rule of thumb: 30 seconds on 28.8 connection Use “browser-safe” colors

Page 32: Creating Web Sites An introduction to the basics.

Step Three: Presentation (cont.)

Context is everything!

Page 33: Creating Web Sites An introduction to the basics.

Step Three: Presentation (cont.)

Context is everything! NO: blinking text

Page 34: Creating Web Sites An introduction to the basics.

Step Three: Presentation (cont.)

Context is everything! NO: blinking text NO: moving parts (except for multimedia)

Page 35: Creating Web Sites An introduction to the basics.

Step Three: Presentation (cont.)

Context is everything! NO: blinking text NO: moving parts (except for multimedia) NO: music

Page 36: Creating Web Sites An introduction to the basics.

Step Four: Style

Page 37: Creating Web Sites An introduction to the basics.

Step Four: Style

Add your own personality

Page 38: Creating Web Sites An introduction to the basics.

Step Four: Style

Add your own personality Give it a signature look with subtle use of

matching graphics and fonts

Page 39: Creating Web Sites An introduction to the basics.

Step Four: Style

Add your own personality Give it a signature look with subtle use of

matching graphics and fonts Change and update the content

Page 40: Creating Web Sites An introduction to the basics.

Practice, Practice, Practice!

Links on the handout can be found on the web at:

http://www.seemore.mi.org/webpages/

Enjoy!