DECO1400 Lecture 2

Assessment Overview

DECO1400 - Quiz

Website Design & Implementation Assessments

How to Design a Website?

Goals of Interaction Design

Good and Bad Design

Figure 1 - Remote Interface Design. From Right to Left, Apex Remote, TiVo Remote, Apple TV Remote.

Ten Usability Heuristics for User Interface Design

For Usability Heuristics particular for web design check out this

  1. Visibility of System Status The system should always keep users informed about what is going on, through appropriate feedback, within reasonable time
  2. Match between system and the real world The system should speak the users' language, with words, phrases and concepts familiar to the user, rather than system-oriented terms. Follow real-world conventions, making information appear in a natural and logical order.
  3. User control and freedom Users often choose system functions by mistake and will need clearly marked "emergency exits" to leave the unwanted state without having to go through an extended dialogue. Support Undo and Redo. For example, could allow users to remove items in their shopping cart before checking out.
  4. Consistency and standards Users should not have to wonder whether different words, situations or actions mean the same thing.
  5. Error prevention Even better than good error messages is a careful design which prevents a problem from occurring in the first place. Either eliminate error-prone conditions or check for them and present users with a confirmation option before they commit to the action.
  6. Recognition rather than recall Minimise the user's memory load by making objects, actions and options visible. The user should not have to remember information from one part of the dialogue to another. Instructions for the use of the system should be visible or easily retrievable when appropriate.
  7. Flexibility and efficiency of use Accelerators, often unseen by the novice user may often speed up the interaction for the expert user, such that the system can cater to both inexperienced and experienced users. allow users to tailor frequent actions.
  8. Aesthetic and minimalist design Dialogues should not contain information which is irrelevant or rarely needed. Every extra unit of information in a dialogue competes with the relevant units of information and diminishes their relative visibility.
  9. Help users recognise, diagnose and recover from errors Error messages should be expressed in plain language (no codes), precisely indicate the problem, and constructively suggest a solution.
  10. Help and documentation Even though it's better if the system can be used without documentation, it may be necessary to provide help and documentation. Any such information should be easy to search, focused on the user's task, list concrete steps to be carried out, and not be too large.

Creating a Website

HTML vs CSS vs JS

Static vs Dynamic Content

Client-Side vs Server-Side

Creating a Website

HTML

HTML Syntax

<html>
<p>
<h1>

HTML Elements

Opening Tag Content Closing Tag
<h1> Welcome </h1>
<p> Some Text Here </p>
Opening Tag Content Closing Tag
<img src="cat.jpg" alt="Fluffy Cat" >

HTML Structure

<!doctype HTML>
<html>
    <head></head>
    <body></body>
</html>

Example HTML Document

<!doctype HTML>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Title of Page</title>
    </head>
    <body>
        Content of document...
    </body>
</head>