PATRÓN DE PAGINA WEB HTML Y CSS
<html>
<head>
<title>página</title>
<meta charset="utf-8">
<style type="text/css">
body{ background-color:#E6E6E6;}
footer{
background-color:#0B0B61;
width:100%;
height:150px;
color:#FCF9F9;
}
nav{
width:100%;
height:40px;
background-color:#B40404;
padding-left:15px;
line-height:35px;
}
a{
text-decoration:none;
color:white;
font-size:18px;
}
main{
padding:2px;
margin:auto;
}
</style>
</head>
<body>
<header>
<img src="https://i.ytimg.com/vi/tDc-aR4LZrQ/maxresdefault.jpg" width="100%" height="250px">
</header>
<nav>
<a href="inicio.html">INICIO</a>
<a href="mision.html">MISIÓN</a>
<a href="vision.html">VISIÓN</a>
</nav>
<main>
<h1>PROGRAMACIÓN</h1>
<p> Programación es la acción de programar
que implica ordenar, estructurar o componer
una serie de acciones cronológicas para
cumplir un objetivo. La programación puede
ser aplicado para eventos sociales, a medios
de comunicación y al mundo informático de
las computadoras.</p>
<img src="https://www.programaenlinea.net/wp-content/uploads/2020/07/programacion-tecgurus.net-2.jpg" width="300px" height="300px">
</main>
<footer>
Autor: Heber Rodriguez
</footer>
</body>
</html>
Comentarios
Publicar un comentario