Created
July 29, 2018 16:31
-
-
Save MBing/d70dcbfcbc78fef5ff9ce01fc91d81fc to your computer and use it in GitHub Desktop.
My Webpage // source http://jsbin.com/jefopik
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>My Webpage</title> | |
</head> | |
<body> | |
<nav> | |
<a href="#home">Home</a> | | |
<a href="#about">About</a> | | |
<a href="#contact">Contact</a> | | |
</nav> | |
<section id="home"> | |
<header> | |
<h2>Home</h2> | |
</header> | |
<article> | |
Welcome to the homepage of yourself. | |
</article> | |
</section> | |
<section id="about"> | |
<header> | |
<h2>About</h2> | |
</header> | |
<article> | |
This page is about you and you alone. | |
</article> | |
</section> | |
<section id="contact"> | |
<header> | |
<h2>Contact</h2> | |
</header> | |
<article> | |
Contact yourself with [email protected] | |
</article> | |
</section> | |
<footer> | |
<p>Copyright ©</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment