I want this, but without javascript:
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_scroll_to_top
And also I want the button to lead me to the element h1 id="bob"
<html>
<head>
<style>
#btn {
display: none;
position: fixed;
bottom: 10px;
right: 10px;
z-index: 99;
font-size: 15px;
border: none;
outline: none;
background-color: gray;
color: darkgray;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#btn:hover {
background-color: white;
}
</style>
</head>
<body>
<button onclick="#top" id="btn"></button>
<h1 id="top">Hoy!</h1>
<pre>
.
.
.
<!-- here I put a lot of dots to make the page scrollable -->
.
.
.
</pre>
</body>
</html>