index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>El negocio de Omar</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<img id="banner" src="banner/banner.jpg">
<h1>Sobre el negocio de Omar</h1>
<p>Lorem ipsum dolor sit amet, <strong>consectetur adipisicing elit</strong>, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<p id="mision"><em>Duis aute irure dolor in <strong>reprehenderit in voluptate</strong> velit esse cillum dolore eu fugiat nulla pariatur.</em></p>
<p>Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</body>
</html>
style.css
body {
background: #CCCCCC;
}
#banner {
width: 100%;
}
h1 {
text-align: center;
}
p {
text-align: center;
}
em strong {
color: red;
}
#mision {
font-size: 20px;
}