<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>inicio</title>
	<style>
		header{
			margin: 0;
			padding: 0;
			border-bottom: 5px solid orange;
		}
		nav{
			border-bottom: 5px solid blue;
			border-top: 5px solid yellow ;
		}
		ul{
			list-style-type: none;
			margin: 0;
			padding: 0;
			overflow: hidden;
			background: #333;
		}
		li{
			float: left;
		}
		li a{
			display: inline-block;
			text-decoration: none;
			padding: 14px 16px;
			text-align: center;
			color: #ffffff;
		}
		li a:hover{
			background: blue;
		} 

		.activo{
			background: orange;
		}
		.uno{
			border: 5px double red;
			width: 75%;
			margin: auto;
			margin-top: 20px;
			margin-bottom: 20px;
		}
	</style>
<body>

</body>
</html>