Why is the following link tag incorrect?
<link href="https://www.example.com" title="Link title">Example</link>
Example should be in single quotes
Example
title attribute should be removed
title
href="https://www.example.com" should be href='https://www.example.com'
href="https://www.example.com"
href='https://www.example.com'
<link> should be <a>
<link>
<a>