You're eligible to transport goods
Based on your answers, you are eligble to transport goods.
### Create Button for Detailed Guide in Whitehall Publisher Source: https://design-system.service.gov.uk/patterns/start-using-a-service This Markdown snippet is used within Whitehall Publisher's 'detailed guide' format to create a button. The button acts as a 'start point' linking to the first page of a service. Ensure the URL is correct for your service's first page. ```markdown {button start}[Button text goes here](https://servicename.service.gov.uk/first-page-within-service){/button} ``` -------------------------------- ### GOV.UK Frontend Back Link Example Source: https://design-system.service.gov.uk/styles/page-template A simple example of the GOV.UK Frontend Back Link component, providing users a clear way to navigate to the previous page. It requires a destination URL. ```html {{ govukBackLink({ href: "#", text: "Back" }) }} ``` -------------------------------- ### HTML Link Example Source: https://design-system.service.gov.uk/styles/links A basic HTML example of a standard link within a paragraph. This demonstrates the default styling for links in the GOV.UK Design System. ```html
Jump to HTML example.
``` -------------------------------- ### Example of Service navigation component (Nunjucks) Source: https://design-system.service.gov.uk/components/service-navigation A Nunjucks code example demonstrating the structure of the Service navigation component. This includes navigation items with links, text, and an active state indicator. It assumes the availability of Nunjucks templating. ```html { "navigation": [ { "href": "/", "text": "Navigation item 1" }, { "href": "#", "text": "Navigation item 2", "active": true }, { "href": "#", "text": "Navigation item 3" } ] } ``` -------------------------------- ### Presenting Results Page - HTML and Nunjucks Examples Source: https://design-system.service.gov.uk/patterns/check-a-service-is-suitable Provides HTML and Nunjucks code examples for a results page that informs users about their eligibility to use a service. Includes elements like phase banners, back links, main content headings, body text, and action buttons. ```htmlBased on your answers, you are eligble to transport goods.
Based on your answers, you are eligble to transport goods.
{{ govukButton({ text: "Continue" }) }}| Case manager | Cases opened | Cases closed |
|---|---|---|
| David Francis | 3 | 0 |
| Paul Farmer | 1 | 0 |
| Rita Patel | 2 | 0 |
| Case manager | Cases opened | Cases closed |
|---|---|---|
| David Francis | 24 | 18 |
| Paul Farmer | 16 | 20 |
| Rita Patel | 24 | 27 |
| Case manager | Cases opened | Cases closed |
|---|---|---|
| David Francis | 98 | 95 |
| Paul Farmer | 122 | 131 |
| Rita Patel | 126 | 142 |
| Case manager | Cases opened | Cases closed |
|---|---|---|
| David Francis | ``` -------------------------------- ### GOV.UK Footer HTML Example Source: https://design-system.service.gov.uk/components/footer This HTML code defines the structure of the GOV.UK footer component. It includes a crown icon, a main navigation section with a two-column list of services and information links, and is designed to be responsive and accessible. ```html ``` -------------------------------- ### HTML: Start Button Source: https://design-system.service.gov.uk/components/button This HTML snippet demonstrates how to create a 'start now' button using the GOV.UK design system classes. It uses an anchor tag (``) with specific ARIA attributes and a start icon, making it suitable for main calls to action without submitting form data. ```html Start now ``` -------------------------------- ### Initialize GOV.UK Frontend JavaScript Source: https://design-system.service.gov.uk/styles/page-template This JavaScript snippet shows how to import and initialize all GOV.UK Frontend components using the `initAll` function from the provided JavaScript file. This ensures interactive elements function correctly. ```javascript import { initAll } from '/javascripts/govuk-frontend.min.js' initAll() ``` -------------------------------- ### Initialize GOV.UK Frontend JavaScript Source: https://design-system.service.gov.uk/styles/page-template Initializes all GOV.UK Frontend components on the page. This script should be placed at the end of the body to avoid blocking rendering. It depends on the `govuk-frontend.min.js` file. ```html ``` ```nunjucks {# Run JavaScript at end of the , to avoid blocking the initial render. #} ``` -------------------------------- ### GOV.UK Frontend Phase Banner Example Source: https://design-system.service.gov.uk/styles/page-template Demonstrates the GOV.UK Frontend Phase Banner component, used to indicate the current development phase of a service (e.g., Alpha, Beta). It includes a tag and explanatory HTML content with a feedback link. ```html {{ govukPhaseBanner({ tag: { text: "Alpha" }, html: 'This is a new service – your feedback will help us to improve it.' }) }} ``` -------------------------------- ### Basic HTML Structure for GOV.UK Page Source: https://design-system.service.gov.uk/styles/page-template A fundamental HTML structure for a GOV.UK page, including the footer with licensing information and copyright. It references external JavaScript for frontend initialization. ```html