In this blog post, we will be preparing a vertical wizard. A wizard is commonly seen on shopping websites (while placing an order) or when we fill a form. A wizard shows us the various steps we have to complete before fulfilling a particular task. It shows us the total number of steps to be completed, the progress we have made, and the remaining number of steps.
A wizard can be horizontal or vertical.
We will be looking over a vertical wizard here.
HTML :
<div class="l-wizard-v">
<ul class="wizard-v">
<li class="wizard-v__step">
<h3>First Step</h3>
<p>Step 1 contains of some other steps that can be defined here.</p>
</li>
<li class="wizard-v__step">
<h3>Second Step </h3>
<p>Feel free to add some more HTML stuff into this div.</p>
</li>
<li class="wizard-v__step">
<h3>Third Step</h3>
<p>The end is near. Go further to see what happens</p>
</li>
<li class="wizard-v__step">
<h3>Final Step</h3>
</li>
</ul>
</div>
0 Comment(s)