<address> < > < > < > < > < > article aside blockquote canvas dd div dl dt fieldset figcaption figure footer form h1-h6 header hr li main nav noscript ol p pre section table tfoot ul video

<a>

  • The <a> tag has several attributes, including:
  • href: The most important attribute, which indicates the link's destination.
  • name: Names the anchor so that it can be the destination of multiple links.
  • target: Defines where to open the linked document
By default links will appear as follows in all browsers.
  • An unvisted link is underlined and blue
  • A visted link is underlined and purple
  • An active link is underlined and red
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ul>
<li><a href="https://learningcodeforgod.net">Website</a></li>
<li><a href="mailto:rick@christisalive.net">Email</a></li>
<li><a href="tel:+5154688400">Phone</a></li>
</ul>
</body>
</html>

<a> Results

<link>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>

</body>

</html>


Results

<nav>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>

</body>

</html>


Results