Commit 847bf4b2 by roshka

1.0

parents
# Indicaciones
- El .js esta en la carpeta js, con el nombre de index.js
- El .css esta en la carpeta css, con el nombre de index.css
- Para ejecutar el .js, ejecutar el archivo index.html.
.fotos_planetas{
width: 150px;
height: 150px;
padding: 5px;
}
#tituloIntroPlanetas{
text-align: center;
}
.botones{
margin: 5px;
padding: 5px;
}
.fotos_lunas{
width: 150px;
height: 150px;
padding: 5px;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="es">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script src="./js/index.js"></script>
</head>
<body>
<div id="introduccion">
<h1>La Via Lactea: </h1>
<img src="fotos/via_lactea.jpg" alt="La via lactea" width="320" height="240"><br><br>
<ul id="datosViaLactea">
</ul><br><br>
<form>
<button type="button" class="botones" href="" onclick="mostrarPlanetas(1)">Mas informacion ...</button>
</form><br><br>
</div>
<div id="lista_planetas">
</div>
</body>
</html>
\ No newline at end of file
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment