You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/index.html

24 lines
966 B

<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SDAW_6464</title>
<style>
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, 'Noto Sans', sans-serif; margin:2rem; line-height:1.5; }
.card { max-width: 640px; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
button { padding: .6rem 1rem; border-radius: 10px; border: 1px solid #1f2937; background: white; cursor: pointer; }
button:hover { background: #f3f4f6; }
</style>
</head>
<body>
<div class="card">
<h1>Proyecto SDAW_6464</h1>
<p>Pulsa el botón para saludar.</p>
<button id="btn-saludo">Saludar</button>
<p style="margin-top:1rem">Este proyecto sirve <code>index.html</code> con un servidor Node.js (Express).</p>
</div>
<script src="script.js"></script>
</body>
</html>