As a result of using the render arrays natively within forms, you can easily place arbitrary links in a form using the link type. Take into consideration the following example:
$form['link'] = array(
'#type' => 'link',
'#title' => $this->t('Mastering Drupal 8'),
'#url' => new Url('<front>'),
);

Link type