Webdevelopment,Business academy aarhus

Frontend programming- Day 4

1. semester - autumn 2009 - 1wu09a and 1wuo9B

Plan

 

Pensum:

Elements of User experience Chapter 4-6

Sexy Webdesign chapter 2,3,4


Exercise for week 40.

DK project report (Danish students)

Redesign (website)

 

Int project report (International students)

Redesign (website)

Read the following multimedia designer (first year projects).

Present your thougths to the research for to the class.


Scope and Structure

The Requrement specification

Describe: “What are we going to make?” / Hvad er det mere præcist vi skal lave?

Reason:

So You/the team/the client Know What You’re Building!
So You/the team/the client Know What You’re not Building!

 

Gathering requirements (Hvordan finder vi frem til mere specifikke krav til produktet?)

 

Structure of a requirement specification (spec.) could be:

 

Genetic rules for a good requirement specification:

 

Exercise:How is the requirement specification in the MDU reports?

 


Structure plan

 

sitemape

 

Exercise: Make a sitemap for a default portfolio website. You can e.g. use www.writemaps.com

 


The skeleton Plan

wireframe

The webpage of the wireframe above.

 

Exercise: Make some wireframes of the 2 webpages that you like.

 

 

 

 Implementing a Two-column layout example

 

Very short intro to HTML and CSS

http://www.html.net/

Firefox addons Firebug https://addons.mozilla.org/da/firefox/addon/1843

Page with No Layout 

 

1. With a Fixed centered layout = "Ice cube " = using a fixed width wrapper

#allcontent {starbuzz.css (line 65)
background-color:#675C47;
margin-left:auto;
margin-right:auto;
padding-bottom:5px;
padding-top:5px;

width:800px;

}

 

2. With a Floating Layout with Absolute and Fixed elements

Floated = Liqued layout adjust to the size of the Browserwindow.

 

#award {    

left:365px;
position:absolute;
top:30px;
z-index:99;
}

#coupon {

left:-90px;
position:fixed;
top:300px;

}

 

The three column layout

 

 

Exercise: Tutorial two column layout

 


 

James James Garrett model

jjg