blob: a22c9b6240b2b41b58fa4569a441f2ba787b4c33 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang=XX>
<head>
<meta charset=UTF-8 />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Euro Test-Banknotes</title>
<link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
<link rel="stylesheet" type="text/css" href="/style.css" />
</head>
<body>
<nav>
<!-- NAV-BAR -->
<!-- NOTE-NAV -->
</nav>
<main>
<section>
<header>
<h1>Euro Test-Banknotes</h1>
</header>
</section>
<br /><br />
<section><!-- TABLE-KEY --></section>
<br /><br />
<section>
<p>
The following “test banknotes” were banknotes from the “Europa” series
printed to test their usage in ATMs and such. The ‘*’ character in
the below serial numbers represents an arbitrary number/letter.
<br /><br />
A few additional notes: the €5 test-note bears the signature of
Jean-Claude Trichet, and the €20 test-note beginning with ‘S’ was
printed on the plate “S004”. If a note matches the serial-number
pattern but does fails these requirements, it’s not a test-note.
</p>
</section>
<br />
<section class="cl-section slant-down">
<div>
<table id=test-banknote-table class=coin-table cellspacing=0>
<thead>
<tr>
<th colspan=2>Test Banknotes</th>
</tr>
<tr>
<th>Year</th>
<th>Serial Number</th>
</tr>
</thead>
<tbody>
<!-- TABLE-BODY -->
</tbody>
</table>
</div>
</section>
<section><!-- FOOTER --></section>
</main>
</body>
</html>
|