Buttons

What are buttons?

Buttons allow you to create clear calls to action on your page. There are a few different ones you can use, the code for these is below. You'll need to add a URL to each one after you add it to your page - just replace the / in the href bit with your URL.

If your URL points to a page within your website, you should use a relative URL. Essentially this means that rather than writing https://www.undebbangor.com/website-training-hub you would write /website-training-hub.

Normal button

<p>
  <a class="button" href="/">Normal button</a>
</p>

Feature button

<p>
  <a class="feature-button" href="/">Feature button</a>
</p>

Feature button row Feature button row Feature button row

<p>
  <a class="feature-button" href="/">Feature button row</a>
  <a class="feature-button" href="/">Feature button row</a>
  <a class="feature-button" href="/">Feature button row</a>
</p>