DECO1400 Lecture 2
Assessment Overview
DECO1400 - Quiz
- Made available on Blackboard after the lecture on Tuesday 4 April
- Multiple choice questions based on the contents covered in lecture and tutorial/practical sessions
- Once you start, you have to finish it (you can’t save and go back to it)
- Duration: 20 Minutes
- You have to submit it by 6 April, 4:00pm (or anytime before then)
- Week 1-6 materials will be covered
- No JavaScript questions
- Some of the popular RiPPLE questions might feature in the Quiz too
Website Design & Implementation Assessments
- Released on Blackboard.
- Website presentation in Week 13 - can do it before the class in smaller sessions or one-to-one (i.e. present to tutors only)
How to Design a Website?
- In deciding how to design your website, you should consider:
- Who is going to be using the website?
- How they are going to use it?
- The types of activities that will be carried out on the website.
Goals of Interaction Design
- Develop usable interactive products:
- easy to learn
- effective to use
- provides an enjoyable experience
User Centred Design
Involve users in all stages of the design process:- Requirement gathering
- Design
- Pilot studies
Good and Bad Design

Figure 1 - Remote Interface Design. From Right to Left, Apex Remote, TiVo Remote, Apple TV Remote.
- What is wrong with the Apex remote?
- Too many buttons
- Buttons are not visually distinct?
- Why is the TiVo remote much better designed?
- Easy to figure out what does what.
- What about the AppleTV remote?
- A lot fewer buttons, only what is strictly necessary.
- Easier for challenging demographics such as older users to figure out how to use the device than a remote with many visually similar buttons.
Ten Usability Heuristics for User Interface Design
For Usability Heuristics particular for web design check out this
Visibility of System Status
The system should always keep users informed about what is going on, through appropriate feedback, within reasonable timeMatch 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.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.Consistency and standards
Users should not have to wonder whether different words, situations or actions mean the same thing.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.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.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.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.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.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
HTML
is the structure. It is going to contain all the text, the various images tied to teh text, and it will generally group things together. Just like drywall in your house, HTML doesn't do anything other than exist. It relines on other things to do tings for it, and to it.CSS
is the blueprint. It's all the rules of what goes where, what color it is, what size it is, what it's font is, what the decorative background images are. HTML, like CSS doesn't do anything, it's just a set of rules that describe what things go where and how they look.JavaScript
is the smart home. It's where all the cool pre-programmed stuff you can tell your house to do is. JavaSCript is what can change the HTML and CSS to react to various stimuli.
Static vs Dynamic Content
Static Content
Fixed content; Content that is the same for every user.Dynamic Content
Changeable content; Varies depending on user / time of day / location / task. Usually requires special software to generate (typically server-side).
Client-Side vs Server-Side
Client Side
Rendered by the browser- All operations occur on the user's device
- Created using HTML, CSS and JavaScript
Server Side
Responsible for data retrieval, processing and storage.- Generates unique code that is sent to the browser.
- Created using PHP, .NET, Java, etc.
Creating a Website
- public_html/
- index.html
- about-us.html
- contact.html
- style.css
- images/
HTML
- HTML stands for Hyper Text Markup Language
- Identifies & structures content of a webpage
- HTML elements identify content
- Web browser interprets elements & renders on screen.
- HTML documents are webpages
- Plain-text files saved with
.html
file extension - Files typically named using lowercase characters (a-z 0-9 -_)
- Edited using plain-text or code editors such as Notepad, TextEdit, Visual Studio Code, Sublime Text
- Viewed and rendered using a web browser.
HTML Syntax
- A series of tags to describe content
- A tag is a descriptor contained within angle brackets.
<html>
<p>
<h1>
- It tells the browser how to interpret the content within the brackets.
HTML Elements
- Elements (and tags) are the building blocks of HTML
- Elements consist of an opening tag, some content and a closing tag
- A tag describes the content contained within
Opening Tag | Content | Closing Tag |
---|---|---|
<h1> | Welcome | </h1> |
<p> | Some Text Here | </p> |
- Some elements have no "content"
- Or the "content" is described in attributes (for images/media)
- Closing is denoted by no end tag.
Opening Tag | Content | Closing Tag |
---|---|---|
<img | src="cat.jpg" alt="Fluffy Cat" | > |
HTML Structure
- All HTML documents follow the same structure:
<!doctype HTML>
<html>
<head></head>
<body></body>
</html>
- From the HTML5 specification, we must specify the doctype:
<!doctype HTML>
- HTML5 is the latest specification for HTML from the W3C.
- HTML5 is a loose standard.
Pro
Backwards compatible, forgivingCon
Easier to develop bad habits.- Tries to validate anything & everything.
- We will use HTML5 but with some rules:
- All elements must be closed.
- All tags should be lowercase.
- All HTML documents must have a
html
,head
andbody
element. - All text should be contained within the appropriate element.
- Attribute values should always be placed within quotes.
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>
- Within the HTML document above, notice:
- There is only one
<head>
element. - There is only one
<body>
element.
- There is only one
- You can add comments to your HTML - these are not displayed on the page, and are for yourself and other developers.
- Comments begin with
<!--
and end with-->
<!-- Comment here -->
- Comments begin with
- Elements can contain other elements
- Tags must be in order.
<p> This is <em>Content</em></p>
- Tags must be in order.
Semantics
Each HTML element must abide by it's content rules as outlined [here](https://developer.mozilla.org/en- US/docs/Web/Guide/HTML/Content_categories)Checking Code Quality
HTML can be submitted to a validator to check for errors.- W3C Markup Validation Service picks up structural or semantic issues with your code
- Use your eyes too! The validator doesn't pick everything up