Skip to content

Instantly share code, notes, and snippets.

@MBing
Created July 29, 2018 16:31
Show Gist options
  • Save MBing/d70dcbfcbc78fef5ff9ce01fc91d81fc to your computer and use it in GitHub Desktop.
Save MBing/d70dcbfcbc78fef5ff9ce01fc91d81fc to your computer and use it in GitHub Desktop.
My Webpage // source http://jsbin.com/jefopik
<!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 your@email.com
</article>
</section>
<footer>
<p>Copyright &copy;</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment