-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.26 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ejercicio 02 - Json</title>
<link href="css/Estilos.css" rel="stylesheet" type="text/css" />
<script src="js/Asientos_Json.js" type="text/javascript"></script>
</head>
<body>
<header>
<img src="img/The+world+bank.png"/>
<h2>EXTRACTO DE SU CUENTA</h2>
<div id="sucursal">
<p>SUCURSAL 4106</P>
<P>AVDA. DE GALICIA 23</P>
</div>
<div id="codigo">
<p>COD. CUENTA CLIENTE: 4106 52</p>
<P>TITULAR: JACINTO GÓMEZ JAÉN</p>
</div>
<div id="fecha-extracto">
<p>FECHA: 5.OCT.2020</p>
<P>PÁGINA: 001</p>
</div>
</header>
<div id="cuerpo">
<div id="cliente">
<h3>CLIENTE: <input id="cliente" type="text" value="Jacinto Gómez Jaén"/> </h3>
<div id="botonera">
<button id="boton" type="button">Extracto</button>
</div>
</div>
<div id="tabla">
</div>
</div>
<footer>
<p id="pie">Eva Pérez Nieves - Ejercicio 02 - Json - 2020-2021</p>
</footer>
</body>
</html>