Subparts
-
Estructura HTML
Estructura HTML
HTML proporciona la estructura básica de las páginas web.
<!DOCTYPE html>
<html>
<head>
<title>Mi Página</title>
</head>
<body>
<h1>Bienvenido</h1>
<p>Este es un párrafo.</p>
</body>
</html> -
Estilos CSS
Estilos CSS
CSS controla el aspecto visual de los elementos HTML.
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
color: #333;
text-align: center;
}