Course documents - CANVAS
Johan
Domina
office: E3410
email: kojo@ju.se
office: E3406b
email: domina.kiunsi@ju.se
Yordan
Antonia
Course coordinator
Lectures (only)
technically
After a successful course, the student shall
Knowledge and understanding
- show familiarity with the communication between web clients and web servers
- demonstrate comprehension of the different aspects of web based system architecture
Skills and abilities
- demonstrate the ability to apply HTML5 standards in the construction of documents
- demonstrate the ability to apply CSS3 in the design of a web site
- demonstrate the ability to apply precompiled CSS (SASS/LESS)
- demonstrate the ability to develop a finished web solution with the aid of CSS3 and HTML5 following a given specifications and a focus on sustainability
- demonstrate the ability to develop a web site according to principles and best practices of responsive web design
Judgement and approach
- demonstrate the ability to suggest a user interface that is user friendly and useable, and to motivate why
syllabus
ultimately
To turn this...
...into more customers
via
@White :#FFFFFF;
@Black :#000000;
@numbers :#E68200;
@keywords :#FFB500;
@property :#FFDB82;
main > nav.navigation a {
color:#4523ee;
font-size:1.5em;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pizzeria Campino</title>
</head>
<body>
<header>
<nav class="navigation">
<ul>
<li>Menu</li>
<li>Contact</li>
</ul>
</nav>
</header>
</body>
</html>
It's not just typography, colors and layout
There is a rare breed of web designer who can handle all ... from content strategy to UX to frontend development to what happens on the server. These folks are known in the biz as "unicorns". I’ve met a few!
-Jennifer Niederst Robbins
12 lectures
4 lab assignments
1 group assignment
1 exam
{
4 credits
3,5 credits
5
Lab 2-4
Group assignment
Individual exam
5
4 credits
3,5 credits
3
3
3
3
Lab 2-5
Group assignment
Individual exam
5
4 credits
3,5 credits
5
5
5
Find Doodle in Canvas
Find password in Canvas
Lab 1
Lab 2
Lab 3
Lab 4
Group assignment
Exam
2. Present to Domina
1. Wireframes
2. Style guide + prototypes
3. <p>Code it</p>
Might change!
A Beginner’s Guide to HTML, CSS, JavaScript, and Web Graphics
by Jennifer Niederst Robbins
Read it!
it's in Canvas
Examples:
Credit union web design: how-we-work
Forge & Smith: our process
webaartz: agile course of action
It basically goes like this...
RESEARCH
VS
VS
VS
RESEARCH
RESEARCH
Who are they?
What will they expect?
STRATEGY
Define project goals
Define the client’s target groups
Define the client’s message
CONCEPTUALIZE
Textual and visual language
Mood boards
Wireframes
DESIGN
Information Architecture
Wireframes
Style tiles
PRODUCTION
ANALYSIS
From the syllabus:
show familiarity with the communication between web clients and web servers
it starts with a http request
(not the company that hire you to redesign their site)
a client is a device used to browse the web
a server is an online computer (software) supplying content for the web
What the server sends you back, is an HTML document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Jönköping University</title>
<link rel="stylesheet" href="https://ju.se/style.css">
</head>
<body>
<img src="images/logo.jpg" alt="JU logotype">
<h1>WE ARE JU</h1>
</body>
</html>