digitalmarketplace-frontend
Version:
Digital Marketplace Frontend contains assets and components used in Digital Marketplace projects
28 lines (21 loc) • 805 B
HTML
<div class="govuk-form-group">
<fieldset class="govuk-fieldset">
<legend class="govuk-fieldset__legend govuk-fieldset__legend--m">
Here is the service question
</legend>
<div class="govuk-radios govuk-radios--inline" data-module="govuk-radios">
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example" name="example" type="radio" value="true" checked>
<label class="govuk-label govuk-radios__label" for="input-example">
Yes
</label>
</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example-2" name="example" type="radio" value="false">
<label class="govuk-label govuk-radios__label" for="input-example-2">
No
</label>
</div>
</div>
</fieldset>
</div>