Last active
October 25, 2016 00:47
-
-
Save j0lvera/a5ef513ea32f8ce20624b30f58ef190e to your computer and use it in GitHub Desktop.
HTML example
This file contains 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> | |
<head> | |
<title>Home page</title> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<a href="index.html">Home Page</a> | |
<a href="about.html">About</a> | |
</nav> | |
</header> | |
<p>Welcome to my website</p> | |
<footer>Website built by Juan Olvera</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment