I have a form with multiple pages. The first page is ok, it starts up at the top. whenever I hit the next button, the form goes to the next page but it starts from the bottom and you have to scroll up which gets annoying. How can I set the form to start on top every time the next page is hit? https://jsfiddle.net/uz5exL6j/
<form id="regForm" action="https://formspree.io/mn@gmail.com" method="POST">
<!-- <h1>Event Application</h1> -->
<!-- One "tab" for each step in the form: -->
<div class="tab">
<H3 id="subhead">CONTACT INFORMATION</H3>
<label><label id="required">*</label>Primary Contact Name:</label>
<p><input required placeholder="First Name" oninput="this.className = ''" name="First-Name"></p>
<p><input required placeholder="Last Name" oninput="this.className = ''" name="Last-Name"></p>
<p>Primary Contact Title:<input placeholder="" oninput="this.className = ''" name="Primary-Title"></p>
<p>Alternate Contact Name<input placeholder="First Name" oninput="this.className = ''" name="Alt-Contact-FName"></p>
<p><input placeholder="Last Name" oninput="this.className = ''" name="Alt-Contact-LName"></p>