-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 924 Bytes
/
index.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 lang="en">
<head>
<meta charset="utf-8"/>
<meta name="description" content="is pairing faster?"/>
<meta name="keywords" content="pairing,pair,pair programming,xp,extreme programming"/>
<title>Is pairing faster?</title>
<style>
html {
font-size: 24px;
font-family: Verdana, Helvetica, sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
gap: 8.33rem;
padding-top: 8.33rem;
}
a, a:visited {
color: darkslategrey;
}
.yes {
font-size: 4rem;
font-weight: bold;
}
</style>
</head>
<body>
<div class="yes">
YES
</div>
<div>
Read our paper on <a href="https://github.com/initialcapacity/why-pairing-is-faster">why pairing is faster</a>.
</div>
</body>
</html>