-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtema2.html
39 lines (38 loc) · 1.03 KB
/
tema2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tema 2</title>
<script src="/script/tema2.js"></script>
</head>
<body>
<h1>Agenda de contactos</h1>
<form action="#">
<p>
<label for="nombre">Ingrese Nombre</label>
<input type="text" id="nombre">
</p>
<p>
<label for="telefono">Ingrese Telefono</label>
<input type="text" id="telefono">
</p>
<p>
<label for="correo">Ingrese Correo</label>
<input type="text" id="correo">
</p>
<button onclick="agregarAgenda()">Agregar</button>
</form>
<div>
<textarea name="" id="listado" cols="30" rows="10"></textarea>
</div>
<table id="miTabla">
<thead>
<th>Nombre</th>
<th>Telefono</th>
<th>Correo</th>
</thead>
</table>
</body>
</html>