We can also style HTML forms using SpectrumStylr and make them look much better. Type the code shown below (replace "..." with a proper value).

This is an "input" element: <input type="..." name="..." class="...">

This is a textarea: <textarea name="..." class="form"></textarea>

This is a cascading dropdown:

<select name="..." class="form">
   <option>Option 1</option>
   <option>Option 2</option>
   <option>Option 3</option>
</select>

Note: We can also use "form-line" along with "form" in the General Theme.

We can also style submit or reset buttons:

<button class="btn btn-submit" type="submit">Submit</button>
<button class="btn btn-submit" type="reset">Reset</button>