-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcajero.html
38 lines (38 loc) · 1.19 KB
/
cajero.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./sytles.css" rel="stylesheet">
<title>Cajero</title>
</head>
<body>
<div>
<h1>Bienvendio: DEVF</h1>
<section class="atm">
<div class="screen-section">
<!-- <div id="consulta">
<h2>Tu saldo Actual</h2>
<p>Saldo: $ 100.000</p>
</div> -->
<div id="retiro">
<h2>Retiro</h2>
<input class="input" type="text" placeholder="Valor a retirar">
<button class="button is-primary">Retirar</button>
</div>
<!-- <div id="deposito">
<h2>Deposito</h2>
<input class="input" type="text" placeholder="Valor a depositar">
<button class="button is-primary">Depositar</button>
</div> -->
</div>
<div class="buttons-options">
<button class="button is-primary">Retirar</button>
<button class="button is-primary">Depositar</button>
<button class="button is-primary">Transferir</button>
<button class="button is-primary">Consultar</button>
</div>
</section>
</div>
</body>
</html>