-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 2.13 KB
/
index.html
File metadata and controls
83 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
82
83
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Générateur de Cold Wallets Crypto</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #0057ff;
color: white;
text-align: center;
padding: 30px 20px;
}
nav {
background-color: #003bb3;
padding: 10px;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
.container {
max-width: 900px;
margin: auto;
padding: 30px 20px;
}
ul {
line-height: 1.8;
font-size: 1.1em;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 12px 20px;
font-size: 1em;
background-color: #2aabee;
color: white;
border-radius: 6px;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1> Générateur de Portefeuilles Crypto</h1>
<p>Hors-ligne, confidentiel, 100% sécurisé</p>
</header>
<nav>
<a href="index.html">Accueil</a>
<a href="tarifs.html">Tarifs & FAQ</a>
<a href="blog/pourquoi-cold-wallet.html"> Pourquoi un cold wallet ?</a>
<a href="blog/fonctionnement-wallet.html">🔎 Fonctionnement</a>
</nav>
<div class="container">
<h2> Ce que nous proposons :</h2>
<ul>
<li>Wallet papier avec phrase de récupération (12 ou 24 mots)</li>
<li>Export PDF, papier ou tag NFC</li>
<li>Support multi-cryptos : BTC, ETH, XMR, LTC...</li>
<li>Standards BIP39 / BIP44 pour compatibilité complète</li>
<li>Sans stockage numérique — génération manuelle ou assistée</li>
</ul>
<h3>📬 Contact :</h3>
<p>Telegram : <a href="https://t.me/t71y8" target="_blank">@t71y8</a></p>
<a class="cta-button" href="https://t.me/t71y8" target="_blank">📲 Commander via Telegram</a>
</div>
</body>
</html>