-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdwIndex.html
33 lines (33 loc) · 1.06 KB
/
dwIndex.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="dwIndex.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="dwIndex.js"></script>
<title>Digital Wallet - user area</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body class="flxCol">
<i id="money" class="material-icons">attach_money</i>
<div id="wrapper" class="flxCol">
<header>
<div id="logoDiv" class="flxRow">
<i class="material-icons">language</i>
<div id="logoTxt" class="flxCol">
<p>digital wallet</p>
<p>username</p>
</div>
</div>
<div id="newWalletDiv">
<input id="newBtn" type="button" value="new wallet"/>
</div>
</header>
<main id="walletsDiv" class="flxRow"></main>
</div>
<footer>
<p>Desenvolvido por <a href="https://jeimoal.github.io/portifolio/" target="_blank">Jeison Moura</a></p>
</footer>
</body>
</html>