Do's and Don'ts
- Home
Do's and Don'ts
Colon (:) usage
Do's':
Use a colon without space before it and add one space after a colon
Example:
Note: Please submit your report.
Don'ts:
Do not add space before colon.
Example:
Note : Please submit your report.
Using asterisk ( * )
Do's':
Use the available class for mandatory fields.
Class: required
Example:
Copy HTML here
<div class="row">
<div class="col-md-4 col-xl-3 col-lg-3 mb-2 required">
<label class="label-text">Roadside Assist Provider Option Name:</label>
</div>
<div class="col-md-4 col-xl-3 col-lg-3 col-12 ">
<input type="text" class="form-control">
</div>
</div>
Don'ts:
Do not use an asterisk to indicate mandatory fields.