-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet.html
68 lines (64 loc) · 3.31 KB
/
wallet.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>CaffeeCoin Wallet</title>
<meta charset="utf-8">
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
<!-- Favicon -->
<link rel="icon" href="caffee.png" />
</head>
<!--
░█████╗░░█████╗░███████╗███████╗███████╗███████╗
██╔══██╗██╔══██╗██╔════╝██╔════╝██╔════╝██╔════╝
██║░░╚═╝███████║█████╗░░█████╗░░█████╗░░█████╗░░
██║░░██╗██╔══██║██╔══╝░░██╔══╝░░██╔══╝░░██╔══╝░░
╚█████╔╝██║░░██║██║░░░░░██║░░░░░███████╗███████╗
░╚════╝░╚═╝░░╚═╝╚═╝░░░░░╚═╝░░░░░╚══════╝╚══════╝
Woah so thats a nice website
created by N.L.C
-->
<body>
<!--NavBar-->
<header>
<img class="nav__logo" src="caffee.png" width="5%" height="5%" alt="caffee">
<nav>
<ul class="nav__links">
<li><a style="color: white;" href="index.html">Home</a></li>
<li><a style="color: white;" href="wallet.html">Wallets</a></li>
<li><a style="color: white;" href="upcoming.html">Upcoming</a></li>
<li><a style="color: white;" href="about.html">About</a></li>
<li><a style="color: white;" href="contribute.html">Contribute</a></li>
</ul>
</nav>
<a class="cta" href="buycaffeecoin.html"><button style="color: black;">Buy CaffeeCoin</button></a>
</header>
<!--Background-->
<body style="background-color: black;"></body>
<!--Main-->
<main>
<h1 >Choose A Wallet</h1>
<br>
<h2 style="text-align: center; color: white;">You can choose either a mobile wallet and a dekstop wallet where you can download</h2>
<br>
<br>
<hr>
<br>
<br>
<h1>Mobile Wallets</h1>
<br>
<h3 style="text-align: center; color: white; font-weight: 100;">We highly recommend trust wallet as it is very simple to set up and comes with and in a crypto exchange.</h3>
<br>
<br>
<hr>
<br>
<br>
<h1>Desktop Wallets</h1>
<br>
<h3 style="text-align: center; color: white; font-weight: 100;">We recommend using the wallet that is built by us!<br><h2 style="color: #fff; text-align: center;">The CaffeeWallet!</h2></h3>
<h2>CaffeeWallet</h2>
<img style="padding-left: 800px;" src="/img/caffee.png">
<a href="wallet.txt" download=""><h3 style="text-align: center; color: lightblue;">Download CaffeeWallet here!</h3></a>
</main>
</body>
</html>