forked from Patagonian-IUPA/try-catch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.16 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.16 KB
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>
<html>
<head>
<title>IUPA | Programacion Web 1</title>
<meta charset="UTF-8" />
<link
rel="shortcut icon"
href="https://iupa.edu.ar/sitio/wp-content/uploads/2018/01/favicon3.ico"
/>
<link
rel="icon"
href="https://iupa.edu.ar/sitio/wp-content/uploads/2018/01/Favicon3.gif"
type="image/gif"
/>
<link
rel="icon"
href="https://iupa.edu.ar/sitio/wp-content/uploads/2018/01/Favicon3.png"
type="image/png"
/>
<link
rel="apple-touch-icon"
href="https://iupa.edu.ar/sitio/wp-content/uploads/2018/01/Favicon3-1.png"
/>
</head>
<body>
<h1>IUPA | Programación Web 1</h1>
<p>
<button onclick="btnLeer()">Leer</button>
</p>
<p>
<button onclick="btnConectar()">Conectar</button>
</p>
<p>
<button onclick="btnCargar()">Cargar</button>
</p>
<p>
<button onclick="btnLeer()">Leer</button>
</p>
<p>
<button onclick="btnDesconectar()">Desconectar</button>
</p>
<script src="src/db.js"></script>
<script src="src/utils.js"></script>
<script src="src/ejercicios.js"></script>
</body>
</html>