Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 32 additions & 19 deletions index .html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<title>prueba</title>

</head>

<body>
<h1>CURSO DE HTML</h1>
<h2 id="inicio">Listado del curso</h2>
Expand Down Expand Up @@ -165,7 +166,7 @@ <h2 id="enlaces">Enlaces</h2>
<h2 id="elementos-interactivos">Elementos interactivos</h2>

<details open="yes">
<summary>
<summary>
<b>Listado</b>
</summary>
<p>
Expand All @@ -176,7 +177,7 @@ <h2 id="elementos-interactivos">Elementos interactivos</h2>
</p>
</details><br />
<!-- comentarios -->
<dialog class="dialogo" open>
<dialog class="dialogo" open>
Esta es una ventana modal
</dialog>
<button type="submit">Prueba</button><br /><br /><br />
Expand All @@ -186,20 +187,20 @@ <h2 id="elementos-interactivos">Elementos interactivos</h2>
<h2 id="audio-video">Audio y video</h2>
<audio src="Beauty.mp3" controls loop preload
>

</audio><br /><br />
<video height="auto" width="200" preload poster="IMG-20260808-WA0003.jpg" controls autoplay="yes">
<source src="Twilight.mp4" type="" media="" />
<video height="auto" width="200" preload poster="IMG-20260808-WA0003.jpg" controls autoplay="yes">
<source src="Twilight.mp4" type="" media="" />
</video><br /><br />
<iframe src="Twilight.mp4" frameborder="1" width="250"height="auto"></iframe><br />
<a href="#inicio">Ir a inicio</a><br />

<hr />
<h2 id="formularios">Formularios</h2>
<h3>Elementos de formulario</h3>
<input type="text" name="texto" id="" value="" required/><br /><br />
<input type="file" name="" id="" value="" /><br /><br />
<input type="file" multiple name="" id="" value="" /><br /><br />
<input type="text" name="texto" id="" value="" required /><br /><br />
<input type="file" name="" id="" value="" /><br /><br />
<input type="file" multiple name="" id="" value="" /><br /><br />

<input type="submit" name="" id="" value="acepto" /><br /><br />
<input type="checkbox" name="" id="" value="" /><br /><br />
Expand Down Expand Up @@ -230,21 +231,33 @@ <h3>Elementos de formulario</h3>
<option value="4">cuatro</option>
</select><br /><br />
<br />
<input type="text" name="otrotexto" id="" value="esto es solo lectura" readonly disabled=""/><br /><br />
<input type="text" name="otrotexto" id="" value="esto es solo lectura" readonly disabled="" /><br /><br />
<h3>Ejemplo de formularios</h3>
<h4>Formulario de login</h4>
<!--usuario=lapdev%40gmail.com&password=fjfkfkfkf -->
<form action="https://lapzdev@gmail.com/" autocomplete="off" >
<label for="usuario">usuario</label>
<input type="text" name="usuario" id="usuario"
placeholder="--escriba el usuario--" pattern="^[A-Za-z]+$" title="Este cuadro de texto no acepta números" autocomplete="on">
<input type="password" name="password" id="" placeholder="--escriba el password--">
<input type="submit" name="" id="">
</form><br><br>
<form action="https://lapzdev@gmail.com/" autocomplete="off">
<label for="usuario">usuario</label>
<input type="text" name="usuario" id="usuario"
placeholder="--escriba el usuario--" pattern="^[A-Za-z]+$" title="Este cuadro de texto no acepta números" autocomplete="on">
<input type="password" name="password" id="" placeholder="--escriba el password--">
<input type="submit" name="" id="">
</form>
<br><br>
<a href="#inicio">Ir a inicio</a><br />
<h4>Selects, checkbox y radios</h4>
<form action="">
<p>
Seleccionar el idioma
</p>
<select name="idioma" id="">
<option value="1">español</option>
<option value="2">inglés</option>
<option value="3">francés</option>

</select>
</form>
<script type="text/javascript" src='prog.js'>

</script>
</body>

</html>
</html>
2 changes: 2 additions & 0 deletions prog.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
let a=9.8
console.log(a)
console.log('Esta es una prueba')
alert('Prueba con alert')
Loading