-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (92 loc) · 3.91 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wallet</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<!-- <nav class="navbar">
<div class="navbar-logo">
<img src="assets/images/logo coinevoo.png" alt="Crypto Logo" width="165" height="51">
</div>
<div class="navbar-links">
<div class="navbar-link">
<img src="assets/images/Home Icon.png" alt="Home" width="35" height="35">
<span>Home</span>
</div>
<div class="navbar-link">
<img src="assets/images/Wallet Icon.png" alt="Crypto Logo" width="35" height="35">
<span>Wallet</span>
</div>
</div>
</nav> -->
<div class="dashboard">
<div class="balance">
<h3>Balance</h3>
<p class="balance-amount" id="balance-amount">$475.22</p>
</div>
<div class="actions">
<div class="action">
<img src="assets/icons/send.png" alt="Send">
<p>Send</p>
</div>
<div class="action">
<img src="assets/icons/receive.png" alt="Receive">
<p>Receive</p>
</div>
<div class="action">
<img src="assets/icons/history.png" alt="History">
<p>History</p>
</div>
<div class="action">
<img src="assets/icons/more.png" alt="More">
<p>More</p>
</div>
</div>
<div class="under-construction">
<div class="under-construction-content">
<img src="assets/icons/dev.png" alt="Under Construction">
<p>This part of the website is still under construction.</p>
</div>
</div>
</div>
<div class="app-bar">
<div class="app-bar">
<div class="app-bar-icons">
<div>
<img src="assets/images/Home Icon.png" alt="Home" width="50" height="50">
</div>
<div>
<img src="assets/images/Wallet Icon.png" alt="Wallet" width="50" height="50">
</div>
<div>
<img src="assets/images/Home Icon.png" alt="Icon 3" width="50" height="50">
</div>
<div>
<img src="assets/images/Wallet Icon.png" alt="Icon 4" width="50" height="50">
</div>
</div>
</div>
</div>
<!-- <div class="get-involved-social-wrapper">
<a class="get-involved-social-element" href="https://www.facebook.com/coinevoo.br/" target="_blank" rel="noopener noreferrer">
<img src="assets/images/facebook.png" alt="Facebook" width="30" height="30">
<div class="get-involved-social-element-text"></div>
</a>
<a class="get-involved-social-element" href="https://www.youtube.com/@CoinevooBR/about" target="_blank" rel="noopener noreferrer">
<img src="assets/images/YouTube.png" alt="YouTube" width="40" height="30">
<div class="get-involved-social-element-text"></div>
</a>
<a class="get-involved-social-element" href="https://www.linkedin.com/in/coinevoo-br-a7402b284/" target="_blank" rel="noopener noreferrer">
<img src="assets/images/LinkedIn.png" alt="LinkedIn" width="30" height="30">
<div class="get-involved-social-element-text"></div>
</a>
<a class="get-involved-social-element" href="https://www.facebook.com/coinevoo.br/" target="_blank" rel="noopener noreferrer">
<img src="assets/images/Instagram.png" alt="LinkedIn" width="30" height="30">
<div class="get-involved-social-element-text"></div>
</a>
</div> -->
</body>
</html>