Rating

These components can be used to get reviews from the users. They are found widely in web applications.

Below is an example for rating bar.

            
          <div class="rating-wrapper">
            <input type="radio" id="star-1" name="rating" />
            <label for="star-1"></label>
            <input type="radio" id="star-2" name="rating" />
            <label for="star-2"></label>
            <input type="radio" id="star-3" name="rating" />
            <label for="star-3"></label>
            <input type="radio" id="star-4" name="rating" />
            <label for="star-4"></label>
            <input type="radio" id="star-5" name="rating" />
            <label for="star-5"></label>
          </div>