-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
function cambiarTexto() {
var newText =
'Este es el nuevo texto que se muestra después de hacer clic en el botón.';
document.getElementById('text').innerHTML = newText;
}
function restaurarTexto() {
var originalText =
'Este es un texto que cambiará cuando se haga clic en el botón anterior.';
document.getElementById('text').innerHTML = originalText;
}
</script>
</head>
<body>
<h1>Mi primera página web</h1>
<p>
Hola, esta es una página web simple que utiliza HTML, CSS y JavaScript de
los alumnos de la academia BlockMaker.
</p>
<button id="myButton" onclick="cambiarTexto()">Haz clic aquí</button>
<p id="text" onmouseover="restaurarTexto()">
Este es un texto que cambiará cuando se haga clic en el botón anterior.
</p>
</body>
</html>