Word Count: 42
  • Post category:Codings
  • Post last modified:2021-03-06

To add a button with a fixed postion on the page:

<style>
.fixRegBtn {
	position: fixed;
	right: 10px;
	top: 64vh;
	z-index: 100;
}


</style>

<div class="fixRegBtn">
    <a href="">
        <div class="aniBtn">Free Register</div>
    </a>
</div>