Link tags

From Market Ruler Help
Jump to: navigation, search

Link tags are HTML tags on a page which link to other pages. Link tags usually specify an HTML attribute which refers to a URL.

Some link tags are:

  • a attribute href - Links to another page
  • area attribute href - Links to another page from a region of an image
  • link attribute href - Links to a resource used on the page or describing the page
  • img attribute src, or lowsrc - Links to an image to be displayed
  • script attribute src - Links to a script to be used on a page
  • input attribute src - Links to an image which submits a form

There are a few others, but these are the most common.

Examples:

<a href="/">Home page</a>
<map name="logo"><area shape="rect" coords="93,93,186,186" href="/the-portfolio/" /></map>
<link rel="stylesheet" href="/css/style.css" media="screen" />
<img src="logo.gif lowsrc="low-logo.gif" />
<script type="text/javascript" src="https://www.conversionruler.com/bin/js.php?siteid=19"></script>
<input src="submit.gif" name="submit" value="Go" alt="Go" />