Skip to content
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
2 changes: 1 addition & 1 deletion codigo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
nombre = "Luquitas"
nombre = "David"
apellido = "Dalto"

saludo = "Hola "+ nombre + " " + apellido + " ¿Como estas?"
Expand Down
71 changes: 71 additions & 0 deletions html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Página Personal</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f0f4f8;
margin: 0;
padding: 0;
}

header {
background-color: #004080;
color: white;
padding: 1.5rem;
text-align: center;
}

section {
padding: 2rem;
}

.tarjeta {
background-color: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
max-width: 600px;
margin: auto;
}

footer {
text-align: center;
padding: 1rem;
background-color: #004080;
color: white;
margin-top: 2rem;
}
</style>
</head>
<body>

<header>
<h1>Hola, soy David</h1>
<p>Ingeniero químico apasionado por la robótica y la automatización</p>
</header>

<section>
<div class="tarjeta">
<h2>Sobre mí</h2>
<p>Me interesa el modelado de reactores, la programación en Python, y estoy aprendiendo desarrollo web como hobby. Disfruto resolver problemas y aprender cosas nuevas.</p>

<h2>Habilidades</h2>
<ul>
<li>Python</li>
<li>Git y GitHub</li>
<li>HTML, CSS, JavaScript (básico)</li>
<li>Simulación de procesos</li>
</ul>
</div>
</section>

<footer>
<p>Contacto: david@example.com</p>
</footer>

</body>
</html>