Label
Labels are automatically styled with proper typography and spacing.
Markup
Section titled “Markup”<!-- Works without classes -->
<label for="name">Name</label>
<input type="text" id="name" class="af-input" />
<!-- Or use the class explicitly -->
<label class="af-label" for="email">Email</label>
<input type="email" id="email" class="af-input" />