Difference between revisions of "Link tags"

From Market Ruler Help
Jump to: navigation, search
(Created page with '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''' attrib…')
 
 
Line 1: Line 1:
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]].
+
'''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:
 
Some link tags are:

Latest revision as of 14:37, 29 July 2020

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" />