govuk-frontend
Version:
GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.
25 lines (24 loc) • 1.31 kB
HTML
<div class="govuk-form-group">
<fieldset class="govuk-fieldset" aria-describedby="housing-act-hint">
<legend class="govuk-fieldset__legend govuk-fieldset__legend--m">
Which part of the Housing Act was your licence issued under?
</legend>
<div id="housing-act-hint" class="govuk-hint">
Select one of the options below.
</div>
<div class="govuk-radios" data-module="govuk-radios">
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="housing-act" name="housing-act" type="radio" value="part-2">
<label class="govuk-label govuk-radios__label" for="housing-act">
<span class="govuk-heading-s govuk-!-margin-bottom-1">Part 2 of the Housing Act 2004</span> For properties that are 3 or more stories high and occupied by 5 or more people
</label>
</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="housing-act-2" name="housing-act" type="radio" value="part-3">
<label class="govuk-label govuk-radios__label" for="housing-act-2">
<span class="govuk-heading-s govuk-!-margin-bottom-1">Part 3 of the Housing Act 2004</span> For properties that are within a geographical area defined by a local council
</label>
</div>
</div>
</fieldset>
</div>