-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path06-this-is-for-everyone.html
42 lines (39 loc) · 1.03 KB
/
06-this-is-for-everyone.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
<!doctype html>
<html>
<head>
<title>This is for everyone</title>
<link rel="stylesheet" type="text/css" href="../static/poster.css">
<style>
h2 {
}
.icon-ballot {
top: 90mm;
;
}
.principles ol > li:nth-child(6) {
color: red;
}
</style>
</head>
<body>
<div class="page">
<h2>This is for everyone</h2>
<img class="icon icon-ballot" src="../drawings/ballot.svg">
<div class="principles">
<h3>Government Digital Service <strong>Design Principles</strong></h3>
<ol>
<li>User needs, not government needs</li>
<li>Do less</li>
<li>Design with data</li>
<li>Do the hard work to make it simple</li>
<li>Iterate. Then iterate again.</li>
<li>This is for everyone</li>
<li>The unit of delivery is the team</li>
<li>Build things people can build on</li>
<li>Be consistent not uniform</li>
<li>Make things open, it makes them better</li>
</ol>
</div>
</div>
</body>
</html>