You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="description">
<title>Content Tabs</title>
<link rel="stylesheet" type="text/css" media="screen" href="styles.css"/>
<script src="code.js"></script>
</head>
<body>

<nav>
<a href="#c1">Section 1</a>
<a href="#c2">Section 2</a>
<a href="#c3">Section 3</a>
<main>
<article id="c1">
<h1>Section 1</h1>
</article>
<article id="c2">
<h1>Section 2</h1>
</article>
<article id="c3">
<h1>Section 3</h1>
</article>
</main>
</nav>
</body>
</html>

You might also like