-
Notifications
You must be signed in to change notification settings - Fork 0
/
CleanPresentation.html
78 lines (62 loc) · 2.63 KB
/
CleanPresentation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<title>Creating a Web for Everyone</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="main.css">
</head>
<!--NavigationBar-->
<nav>
<div class="topnav" role="navigation">
<a href="index.html">Home</a>
<a href="ClearPurpose.html">Clear Purpose</a>
<a href="SolidStructure.html">Solid Structure</a>
<a href="EasyInteraction.html">Easy Interaction</a>
<a href="Wayfinding.html">Wayfinding</a>
<a href="CleanPresentation.html">Clean Presentation</a>
<a href="PlainLanguage.html">Plain Language</a>
<a href="AccessibleMedia.html">Accessible Media</a>
</div>
</nav>
<body>
<h1>Creating a Web for Everyone</h1>
<img class="example" src="presentation.png"
alt="A screenshot of a very cluttered web page with different colored words and many images all jumbled together without any organization.">
<div>
<h2>
Clean Presentation
</h2>
<h3>
Explanation:
</h3>
<h4>
What does it mean?
</h4>
<p>
Clean presentation refers to organization, easy to read font and color, and simplicity. Similar to a clear purpose, a clean presentation makes it simpler for a user to understand the goal and usability of the website.
</p>
<h4>
How do you do it?
</h4>
<p>
This can be done by using accessible Sans Serif fonts, clearly distinct colors (light/dark), and by keeping a lot of blank space. A simple design is best for clean presentation, less is more.
</p>
<h3>
Accessibility Example:
</h3>
<p>
Similar to clear purpose, this guideline also supports accessibility because it is helpful for people with ADD or Autism who may be easily distracted and frustrated by clutter. By having a clean presentation, they will be able to use the site more efficiently.
</p>
<h3>
Resource for more information on this topic:
</h3>
<p>
<a href="https://www.webdesign-inspiration.com/web-designs/style/clean">WebDesign Inspiration – Clean Web Designs</a> <br>
<a href="https://speckyboy.com/the-10-golden-rules-of-simple-clean-design/">Speckyboy – The 10 Golden Rules of Simple, Clean Design</a>
</p>
</div>
</body>
</html>