WDD Learning Modules

UX - Ponder activities.

Preparation

It is recommended to review UX - Introduction before you start. You will also need your editor open with some html and the code from the Prepare activity:

html

<!-- badUx.html -->
<!DOCTYPE html>
<html>
<head>
<title>A Terrible Website</title>
<link rel="stylesheet" href="badUx.css" />
</head>
<body>
<h1>Welcome to our Terrible Website!</h1>
<p>
We're really bad at web design. We're really bad at web design. We're
really bad at web design. We're really bad at web design. We're really bad
at web design. We're really bad at web design.We're really bad at web
design.We're really bad at web design.We're really bad at web design.
We're really bad at web design. We're really bad at web design. We're
really bad at web design. We're really bad at web design.
</p>
<img src="https://byui-cit.github.io/learning-modules/img/ux-bad.jpg" />
<div>
<ul>
<li>This</li>
<li>is</li>
<li>a</li>
<li>very</li>
<li>long</li>
<li>list</li>
<li>that</li>
<li>never</li>
<li>ends</li>
<li>This</li>
<li>is</li>
<li>a</li>
<li>very</li>
<li>long</li>
<li>list</li>
<li>that</li>
<li>never</li>
<li>ends</li>
</ul>
</div>
<form>
<input type="text" placeholder="Enter your name" />
<button type="submit">Submit</button>
</form>
</body>
</html>

css

/* badUx.css */
body {
font-family: Comic Sans MS, sans-serif;
background-color: hotpink;
width: 1000px;
color: #aaa;
}

h1 {
color: green;
text-align: center;
font-size: 80px;
}

img {
width: 100%;
height: auto;
}

form {
background-color: white;
}
ul {
list-style-type: none;
padding: 0;
}

li {
margin-bottom: 10px;
font-size: 20px;
}

form {
margin-top: 20px;
}

These activities will be most effective if you TRY them first before you look at the solution. And after you do look at the solution...DO NOT copy and paste the code. Read through it, try to understand what it is doing...then go fix your code.

Activity 1

The code you were provided intentionally showcases several common user experience mistakes to illustrate how they can negatively impact a website's usability. A well-designed website should be visually appealing, easy to navigate, and accessible to all users.

Make a list of all the issues you see with the page. After making your list review the list below.

UX Issues

Activity 2

Fix the issues identified in activity 1. Run the Lighthouse tool on the site when you are done...try for 100%

Activity 3

One commonly used way to assess the quality of the user experience of a site is by doing user testing and surveys. User testing generally asks people to perform tasks or scenarios. The user is watched carefully while they attempt the task, and feedback about how it went is collected. To get a taste of what this might look like, this activity will ask you to run through a couple of tasks with the Church of Jesus Christ website

For each task record the following:

  1. Find out the time and location of a church service in Dijon France.
  2. You have recently been called as a Primary teacher. Find resources to help you plan a lesson for Sunday.
  3. Find information about what your role is in supporting your Primary children with their personal development goals.
  4. Find information about the church's stance on the environment.