Last active
June 30, 2018 19:20
-
-
Save furenku/4b801e337cd2d4ad5224cbcda0105700 to your computer and use it in GitHub Desktop.
history markup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Ejemplo History</title> | |
<link rel="stylesheet" href="css/styles.css"> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<ul> | |
<button> | |
Inicio | |
</button> | |
<button> | |
Atrás | |
</button> | |
<button> | |
Adelante | |
</button> | |
<button> | |
<a href="pages/otra-pagina.html"> | |
Otra Página | |
</a> | |
</button> | |
<button> | |
<a href="pages/otra-pagina-mas.html"> | |
Otra Página Más | |
</a> | |
</button> | |
<button> | |
Al Azar | |
</button> | |
</ul> | |
</nav> | |
</header> | |
<main> | |
<h1> | |
Página Inicial | |
</h1> | |
</main> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Otra Página Más</title> | |
</head> | |
<body> | |
<main> | |
<h1> | |
Otra Pàgina Más | |
</h1> | |
<img src="http://unsplash.it/400/300?random=0" alt=""> | |
</main> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Otra Página</title> | |
</head> | |
<body> | |
<main> | |
<h1> | |
Otra Pàgina | |
</h1> | |
<img src="http://unsplash.it/400/300?random=0" alt=""> | |
<img src="http://unsplash.it/400/300?random=1" alt=""> | |
</main> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
font-family: Arial, sans-serif; | |
} | |
ul { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
text-align: center; | |
} | |
header { | |
display: flex; | |
} | |
button { | |
border: none; | |
padding: 8px; | |
font-size: .75rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment