Skip to main content
Other print sizes, fonts and colours (detail)

Nunjucks

{% from "govuk/components/button/macro.njk" import govukButton %}
{% from "govuk/components/checkboxes/macro.njk" import govukCheckboxes %}

<form class="form">
{{ govukCheckboxes({
name: "non-standard-letter-options",
fieldset: {
legend: {
  text: "What changes do you need?",
  isPageHeading: true,
  classes: "govuk-fieldset__legend--l"
}

},
hint: {
text: "You can choose more than one option. We will ask for more detail if necessary."  
},

items: [
{
  value: "A different font",
  text: "A different font"
},
{
  value: "Bold text",
  text: "Bold text"
},
{
  value: "Coloured paper",
  text: "Coloured paper"
},
{
  value: "Double line spacing",
  text: "Double line spacing"
},

{
  value: "Large print",
  text: "Large print"
},
{
  divider: "or"
},
{
  value: "Standard letter (12-point Arial text on white paper)",
  text: "Standard letter (12-point Arial text on white paper)",
  behaviour: "exclusive"
}
]
}) }}

{{ govukButton({
text: "Continue"
}) }}
</form>