-
Notifications
You must be signed in to change notification settings - Fork 0
/
complicated-standard.html
53 lines (48 loc) · 1.28 KB
/
complicated-standard.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
<html>
<head>
<title>Complicated Standard, latest version</title>
<style>
body {
font-family: Arial, sans;
max-width: 980px;
margin: 20px auto;
counter-reset: h2;
background: #f0f0f0;
}
h2:before {
counter-increment: h2;
content: counter(h2) '. ';
counter-reset: h3;
}
h3:before {
counter-increment: h3;
content: counter(h2) '.' counter(h3) '. ';
}
table {
border-collapse: collapse;
}
td, th {
border: 1px solid black;
padding: 1ex;
}
</style>
<script src='annost.js'></script>
</head>
<body>
<h1>Complicated Standard, latest version</h1>
<h2>Intro</h2>
<p>There are clients, and there are servers. They shall communicate with each other
and understand each other really well.</p>
<h2>Behaviors</h2>
<h3>Ahem</h3>
<p>Every night when midnight strikes in UTC, the client shall send an "Ahem"
request to the server. The server, open receipt, shall respond, within 5sec, with
"One of these nights again".
</p>
<h3>Nudge Nudge</h3>
<p>The client may send the "Nudge Nudge" message to the server. The server then responds
with "I beg your pardon".</p>
<p>If the server receives an unknown message from the client, it must respond with an
error code.</p>
</body>
</html>