I am trying to figure out how to make a first screen appearance that goes full screen. The whole page would be full screen and when someone scrolls down, it scrolls to a new screen. I can't exactly figure out how to do this.
body {
margin: 0 0 0 0;
}
#sample_img_1 {
height: 900px;
width: absolute;
background-image: linear-gradient(to right, green, blue);
}
#sample_img_2 {
height: 200px;
width: absolute;
background-image: linear-gradient(to right, red, orange);
}
<p id="sample_img_1"></p>
<p id="sample_img_2"></p>