FMS Preset Example

by skibulk

HTML

<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Sunday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Sunday Dinner
</label>
<br>

<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Monday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Monday Dinner
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Tuesday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Tuesday Dinner
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Wednesday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Wednesday Dinner
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Thursday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Thursday Dinner
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Friday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Friday Dinner
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Saturday Lunch
</label>
<br>
<label for="sunday-lunch">
  <input type="checkbox" id="sunday-lunch"> Saturday Dinner
</label>
<br>

CSS

label {
  display: block;
  margin: 5px;
}