blob: 537c90f838d8cce15f9ce5fa679e308bd6e5bcbf (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<!DOCTYPE html>
<html lang=XX>
<head>
<meta charset=UTF-8 />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Moedas e Notas de Euro</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 --></nav>
<main>
<section>
<header>
<h1>Moedas e Notas de Euro</h1>
<h6>Minha Coleção Principal</h6>
</header>
</section>
<section>
<p>
There are various examples of euro coins that have slight varieties
between their standard circulation releases and their coincard/set
releases, such as different mintmarks. In these cases, the NIFC
variety will <strong>not</strong> be listed on this site
<em>unless</em> I happen to get one for my collection (see
<a href=mt>Malta</a> for an example). The same applies to error
coins.
</p>
</section>
<section class="cl-section slant-up">
<div>
<h2>Moedas de Euro</h2>
<table class=country-table>
<tbody>
<tr>
<td><a href=de>Alemanha</a></td>
<td><a href=ad>Andorra</a></td>
<td><a href=at>Áustria</a></td>
<td><a href=be>Bélgica</a></td>
</tr>
<tr>
<td><a href=cy>Chipre</a></td>
<td><a href=va>Cidade do Vaticano</a></td>
<td><a href=hr>Croácia</a></td>
<td><a href=sk>Eslováquia</a></td>
</tr>
<tr>
<td><a href=si>Eslovênia</a></td>
<td><a href=es>Espanha</a></td>
<td><a href=ee>Estônia</a></td>
<td><a href=fi>Finlândia</a></td>
</tr>
<tr>
<td><a href=fr>França</a></td>
<td><a href=gr>Grécia</a></td>
<td><a href=nl>Holanda</a></td>
<td><a href=ie>Irlanda</a></td>
</tr>
<tr>
<td><a href=it>Itália</a></td>
<td><a href=lv>Letônia</a></td>
<td><a href=lt>Lituânia</a></td>
<td><a href=lu>Luxemburgo</a></td>
</tr>
<tr>
<td><a href=mt>Malta</a></td>
<td><a href=mc>Mônaco</a></td>
<td><a href=pt>Portugal</a></td>
<td><a href=sm>San Marino</a></td>
</tr>
</tbody>
</table>
<table class=country-table>
<tbody>
<tr class=last-of-design>
<td><a href=1c>0,01 €</a></td>
<td><a href=2c>0,02 €</a></td>
<td><a href=5c>0,05 €</a></td>
<td><a href=10c>0,10 €</a></td>
</tr>
<tr class=last-of-design>
<td><a href=20c>0,20 €</a></td>
<td><a href=50c>0,50 €</a></td>
<td><a href=1e>1,00 €</a></td>
<td><a href=2e>2,00 €</a></td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="cl-section slant-up">
<div>
<h2>Notas de Euro</h2>
<table class=country-table>
<tbody>
<tr>
<td><a href=5e>5 €</a></td>
<td><a href=10e>10 €</a></td>
<td><a href=20e>20 €</a></td>
<td><a href=50e>50 €</a></td>
</tr>
<tr>
<td><a href=100e>100 €</a></td>
<td><a href=200e>200 €</a></td>
<td><a href=500e>500 €</a></td>
<td><a href=tn>Notas de Teste</a></td>
</tr>
</tbody>
</table>
</div>
</section>
<section><!-- FOOTER --></section>
</main>
</body>
</html>
|