Need some idea that how can I make my webpage land in the middle. Like if someone start the page he/she should landing in the middle of webpage.
body{
margin: 0;
}
.top{
width:100vw;
height: 100vh;
background-color: red;
}
.mid{
width:100vw;
height: 100vh;
background-color: green;
}
.bottom{
width:100vw;
height: 100vh;
background-color: blue;
}
<!DOCTYPE html>
<head>
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top">how to land at the middle of webpage</div>
<div class="mid">How to land in this green coloured section</div>
<div class="bottom">Please help me</div>
</body>
</html>