Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prueba html y pull requests #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Binary file added imagen bob esponja arcoiris.jfif
Binary file not shown.
120 changes: 120 additions & 0 deletions index Ana Parmigiani.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fullstack 2024</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<h1>Formación FullStack</h1>
<h2>Presentación clase HTML</h2>

<p>parrafo 01</p>
<p>parrafo 02</p>

<ol>Ejemplo de lista ordenada
<li>item 01</li>
<li>item 02</li>
<li>item 03</li>
</ol>

<ul>Ejemplo de lista desordenada
<li>item 01</li>
<li>item 02</li>
<li>item 03</li>
</ul>

<div>
<h2>Antes de saber HTML</h2>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSDUxntYcZ8DbSPacyqkHzdkYAIX9wlrrv1A&s" alt="imagen 1">
<p>ejemplo de img src con link de internet</p>
</div>

<div>
<h2>Despues de saber HTML</h2>
<img src="imagen bob esponja arcoiris.jfif" alt="bob esponja arcoiris">
<p>ejemplo de img src con archivo en la carpeta</p>
</div>

<p>ejemplos de links</p>
<a href="https://www.w3schools.com/html/html_links.asp">html información</a> <br>
<a href="https://www.w3schools.com/css/default.asp">css información</a> <br>
<a href="https://www.w3schools.com/sql/default.asp">sql información</a>

<nav>
<ul>Menu de navegación
<li><a href ="#">Inicio</a></li>
<ul>
<li>menu 01</li>
<li>menu 02</li>
<li>menu 03</li>
</ul>
<li><a href="#">Contacto</a></li>
<li><a href="#">Ayuda</a></li>
</ul>
</nav>

<form action="web-a-la-que-se-le-manda-el-form">

<label for="Nombre">Nombre:</label><br>
<input type="text" id="Nombre" placeholder="Ana Parmigiani"><br>

<label for="Mail">Mail:</label><br>
<input type="text" id="Mail" placeholder="[email protected]"><br>

<label for="Pass">Password:</label><br>
<input type="password" id="pass" name="pass" placeholder="inserte su contraseña"><br>

<button type="button">Olvide mi contraseña</button> <br>

<label for="Descripcion">Descripción</label><br>
<textarea id="descripcion" placeholder="inserte texto"></textarea> <br>

<input type="text" placeholder="Buscar" name="query">
<button type="button">Buscar</button><br>

<label for="EnviarForm">Enviar formulario</label><br>
<button type="submit">Enviar</button><br>

</form>



</body>

<footer>2024 Fullstack.</footer>
</html>


<!--

Ejercicios <3

1) Agregar un heading nivel 2, y 2 parrafos. LISTO
2) Crear una ordered list con 3 items. LISTO
3) Crear una unordered list con 3 items. LISTO
4) Crear 2 <div>, dentro de cada div: agregar una imagen, un h2 para mostrar un titulo para esa imagen y un <p> con breve descripcion. LISTO
5) Crear 3 enlaces/links apuntando a sitios diferentes. LISTO
6) Crear menú de navegación <nav> usando una unordered list <ul> que contenga 3 items con links cada uno. LISTO


7) Crear un form con un input tipo texto, que tenga placeholder Buscar y un botón que diga Buscar. LISTO
8) Agregar al form, un input tipo texto para Nombre. LISTO
9) Agregar al form, un text area para Descripción. LISTO

10) Crear footer que contenga el siguiente párrafo: &copy; 2024 Fullstack. LISTO

11) Plus: agregar placeholders en los inputs y text area LISTO
12) Plus: agregar labels y ids para input y text area. LISTO
13) Plus: agregar 3 items más, dentro de un item de la <nav>, usando <ul> y <li> LISTO
14) Plus: agregar 2 inputs más con labels y ids que elijan. LISTO

Más práctica y ejercicios online en: https://www.w3schools.com/html/html_exercises.asp

Documentación:
https://www.w3schools.com/html/html_intro.asp
https://developer.mozilla.org/es/docs/Learn/HTML/Introduction_to_HTML

-->