HTML tag

来源:互联网 发布:ctr预估算法 编辑:程序博客网 时间:2024/05/16 10:42
There are 119 tables here in Html.
1.<!---->
annotation
2.<!DOCTYPE>
define format of website
example:
<!DOCTYPE html>
<html>
    <head>
        <title>Titile</title>
        
    </head>
    <body>
    Here can write any words that show in browser.
    </body>
</html>

3.<a></a>
its use for link another URL .
example: 
    <!DOCTYPE html>
        <html>
            <head>
                <title>Title of page</title>
            </head>
            <body>
                <a href="http://baidu.com">URL of picture</a>
            </body>
        </html>

4.<abbr></abbr>
Show the acronyms of the full name
example:
<!DOCTYPE html>
<html>
    <head>
        <title>Tile</title>
    </head>
    <body>
        <abbr title="Java Development Kit">JDK</abbr>
    </body>
</htm>

5.<acronym></acronym>
its sames like <abbr>  but, html5 nonsupport , so we can use <abbr>.

6.<address></address>
Its very simple to understand, it user for write address in page.
example:
<!DOCTYPE html>
<html>
    <head>
        <title>Titile</title>
    </head>
    <body>
        <address>
                Its A website from Uyghur called <a href="htt;p://www.ulinix.com">Ulinix</a><br>
                Name :Kaisar
                Dream : Stanford University
                BigDream : take parents to Beijing to tirp.
    7.<area></area>
area of some words or text books,
<area> use at inner of <Map>

Property:
@alt:
@coords:
@href:
@hreflang: only use if there is href ,or not.
@meida: only use if there is href ,or not.
@nofref:there is all borwser nonsupport nohref now.
<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" nohref>
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

@rel  :
<img src="planets.gif" tppabs="URL" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" tppabs="URL" rel="alternate">
</map>

to use stipulate relations between linked table and link table.
Attribute value:
    #alternate   : alternative version of linked page.
    #author   : link to another pages author
    #bookmark :  permanent of bookmarks
    #help : link to help to document called {help}
    #license : link to copyright message .
    #next: link to next documenet of selected.
    #nofollow : do not let other find about this link
    #noreferrer
    #prefetch : the files of specified must be cache.
    #prev : last document
    #search : link to search tool
    #tag :Tag of this page

@shape
    #default  all area
    #rect  : rectabgle area
    #circ   : circle
    #poly :polygon

@target
    #_blank  :this linke page  open  at another new page
    #_self : open it this page
    #_parent :open it parent frame
    #_top
    #framename

@type : define this type of this URL
    <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="/images/sun.gif" type="image/gif">
</map>



<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" hreflang="en">
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm"media="screen and (min-color-index:256)>
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>


这是上面的是html 只有7个标签的属性和值得总结其余的明天再做, 最近在复习差不多快忘记的英语所以用英文总结了,请谅解!










1 0