a tag

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#Home{
background: #9c5151;
height: 800px;
}
#Contact{
background: #689c51;
height: 800px;
}
#About{
background: #51799c;
height: 800px;
}
</style>
</head>
<body>
<a href="#Home" >Home</a>
<a href="#Contact" >Contact</a>
<a href="#About" >About</a>


<div id="Home">
<h1>Home</h1>
</div>
<div id="Contact">
<h1>Contact</h1>
</div>
<div id="About">
<h1>About</h1>
</div>

</body>
</html>

Comments