child:id |
free input |
The "id" attribute assigns an unique identifier to the element. This identifier should be unique for the page and can be used to refer to that element. Example: <a id="para-1"> |
child:class |
free input |
The "class" attribute assigns a class name (or a list of class names separated by spaces) to the element. It's used with style sheets and tells the browser the class to which the element is associated with. Example: <a class="home"> |
child:style |
free input |
Defines a visual style of this element according to the CSS standards. Example: <a style="color:#333333; border: none;"> |
child:title |
free input |
Gives a short description about the element shown as a "tool tip" when the user points the mouse over the element. Example: <a title="this is a description"> |
child:charset |
character encoding |
Specifies the character encoding of the target URL content Example: <a charset="utf-8"> |
child:href |
locked |
The system will automatically apply href attribute to the link |
child:hreflang |
HTML lang codes |
Specifies the language of the target URL content. Example: <a hreflang="en"> |
child:type |
content-type |
Tells the browser the content type of the resource named in "href" attribute. Example: <a href="logo.png" type="image/gif"> |
child:rel |
- nofollow
- alternate
- stylesheet
- start
- next
- prev
- contents
- index
- glossary
- copyright
- chapter
- section
- subsection
- appendix
- help
- bookmark
|
Describes the relationship between the current document and the destination resource. Example: <a rel="copyright"> |
child:rev |
- alternate
- stylesheet
- start
- next
- prev
- contents
- index
- glossary
- copyright
- chapter
- section
- subsection
- appendix
- help
- bookmark
|
Describes the relationship between the destination resource and the current document (the opposite of "rel"). Example: <a rev="index"> |
child:shape |
|
The shape attribute is used together with the "coords" attribute to specify the size, shape, and placement of a link in an object or img element. Example: <a href="mercur.htm"shape="circle" coords="90,58,3"> |
child:coords |
- rect: left-x, top-y, right-x, bottom-y.
- circle: center-x, center-y, radius.
- poly: x1, y1, x2, y2, ..., xN, yN.
|
The coords attribute is used together with the shape attribute to specify the size, shape, and placement of a link in an object or img element. Example: <a href="mercur.htm"shape="circle" coords="90,58,3"> |
child:target |
- _blank
- _self
- _parent
- _top
- framename
|
The target attribute specifies where to open the linked document. Example: <a target="_blank"> |
child:tabindex |
integer |
The position of this element in the tabbing order. Example: <a tabindex="3"> |
child:accesskey |
character |
Specifies a keyboard shortcut to access an element (usually when used together with the "alt" key). Example: <a accesskey="a"> |
child:name |
free input |
Defines a unique name for the element. Example: <a name="menu"> |
child:onfocus |
script |
Script to run when the element gets focus Example: <a onfocus="my_script()"> |
child:onblur |
script |
Script to run when the element loses focus Example: <a onblur="my_script()"> |
child:onclick |
script |
Script to run when the element is clicked on Example: <a onclick="my_script()"> |
child:ondblclick |
script |
Script to run when the element is double clicked on Example: <a ondblclick="my_script()"> |
child:onmousedown |
script |
Script to run when a mouse button is pressed over the element Example: <a onmousedown="my_script()"> |
child:onmouseup |
script |
Script to run when a mouse button is released over the element Example: <a onmouseup="my_script()"> |
child:onmouseover |
script |
Script to run when the mouse pointer is over the element Example: <a onmouseover="my_script()"> |
child:onmousemove |
script |
Script to run when a mouse pointer moves over the element Example: <a onmousemove="my_script()"> |
child:onmouseout |
script |
Script to run when a mouse pointer moves out of the element Example: <a onmouseout="my_script()"> |
child:onkeypress |
script |
Script to run when a keyboard button is pressed and released over the element Example: <a onkeypress="my_script()"> |
child:onkeydown |
script |
Script to run when a keyboard button is only pressed over the element Example: <a onkeydown="my_script()"> |
child:onkeyup |
script |
Script to run when a keyboard button is only released over the element Example: <a onkeyup="my_script()"> |