-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtarifs.html
More file actions
81 lines (79 loc) · 2.13 KB
/
tarifs.html
File metadata and controls
81 lines (79 loc) · 2.13 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Tarifs et FAQ - Portefeuilles Crypto</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f7fa;
color: #333;
}
header {
background-color: #0057ff;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #003bb3;
display: flex;
justify-content: center;
padding: 10px 0;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 900px;
margin: auto;
padding: 40px 20px;
}
h1, h2 {
color: #0057ff;
}
ul {
line-height: 1.8;
font-size: 1.1em;
}
a {
color: #0057ff;
}
</style>
</head>
<body>
<header>
<h1>Tarifs & FAQ</h1>
<p>Nos services de portefeuilles crypto sécurisés et hors-ligne</p>
</header>
<nav>
<a href="index.html">Accueil</a>
<a href="tarifs.html">Tarifs & FAQ</a>
</nav>
<div class="container">
<h2>💰 Tarifs</h2>
<ul>
<li>📄 Wallet papier 12 mots (PDF imprimable) : <strong>20 €</strong></li>
<li>🔐 Wallet papier 24 mots : <strong>30 €</strong></li>
<li>📦 Kit wallet + impression + QR : <strong>40 €</strong></li>
<li>📲 Wallet sur tag NFC (jetable ou personnalisé) : <strong>50 €</strong></li>
</ul>
<h2>❓ FAQ</h2>
<ul>
<li><strong>Ces wallets sont-ils générés hors ligne ?</strong><br>Oui, sans connexion Internet, sans stockage numérique.</li>
<li><strong>Les mots sont-ils sauvegardés ?</strong><br>Non. Vous êtes le seul détenteur de la phrase de récupération.</li>
<li><strong>Quels cryptos sont supportés ?</strong><br>BTC, ETH, XMR, LTC, etc.</li>
<li><strong>Comment payer ?</strong><br>Crypto ou virement bancaire (détails fournis à la commande).</li>
</ul>
</div>
</body>
</html>