feat(ch 3): added

This commit is contained in:
Rafa Muñoz
2024-10-28 13:59:54 +01:00
parent 7ae2986c97
commit f189ff2f1c
117 changed files with 4307 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Mi primera p&aacute;gina web</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
function mostrarMensaje () {
alert ("Hola, página cargada;");
}
</script>
</head>
<body onload="Javascript:mostrarMensaje();"></body>
</html>