JSFiddle - React, Tailwind, and code Playground

by Neeraj Yadav

HTML

<form id="questionForm">
  <fieldset id="questionA">
    <label for="username">Username</label>
    <input type="text" id="username" name="username" placeholder="username..." />
    <p><a class="btn btn-primary" id="next">next</a></p>
  </fieldset>
</form>

CSS

a {
  height: 35px;
  width: 120px;
  display: inline-block;
  background: #003CDF;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 3px;
  text-transform: capitalize;
}