-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path02-do-less.html
42 lines (40 loc) · 1.03 KB
/
02-do-less.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>Do less</title>
<link rel="stylesheet" type="text/css" href="../static/poster.css">
<style>
h2 {
}
.icon-glass {
top: 55mm;
left: 30mm;
width: 150mm;
}
.principles ol > li:nth-child(2) {
color: red;
}
</style>
</head>
<body>
<div class="page">
<h2>Do less</h2>
<img class="icon icon-glass" src="../drawings/glass.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>