-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 722 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hola Mundo</title>
<link rel="stylesheet" href="estilos.css" />
</head>
<body>
<h1>Bienvenidos a mi app</h1>
<img src="jebus.gif" alt="Jebus bailando" />
<br>
<button onclick="saludarAJebus()">Saluda a Jebus</button>
<h2>Menú</h2>
<ul>
<li>
<a href="index.html" title="Ir a otra página">Página principal</a>
</li>
<li>
<a href="otra-pagina.html" title="Ir a otra página">Otra página</a>
</li>
</ul>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>