Checkbox guide for billboard framework

Amir Mahmoud Mirzargar
elbillboard

--

You can find files and CDN billboard framework in following link.

https://ellbillboard.com/docs

<div class="chboxes">
<div>
<input type="checkbox" id="chbox-1">
<label for="chbox-1">Sustainable</label>
</div>
<div>
<input type="checkbox" id="chbox-2" checked>
<label for="chbox-2">Gentrify </label>
</div>
<div>
<input type="checkbox" id="chbox-3">
<label for="chbox-3">Gastropub</label>
</div>
</div>

For horizontal view we used .b-flex class

<div class="chboxes b-flex">
<div>
<input type="checkbox" id="chbox-1">
<label for="chbox-1">Sustainable</label>
</div>
<div>
<input type="checkbox" id="chbox-2" checked>
<label for="chbox-2">Gentrify </label>
</div>
<div>
<input type="checkbox" id="chbox-3">
<label for="chbox-3">Gastropub</label>
</div>
</div>

--

--