国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

??
HTML?? ?? ??? ??? ??????
??
1. ??? ??
2. Standard Attributes
3. Global Attributes
Examples to Implement Area Tags in HTML
Example #3
Conclusion
? ? ????? HTML ???? HTML? ?? ??

HTML? ?? ??

Sep 04, 2024 pm 04:31 PM
html html5 HTML Tutorial HTML Properties HTML tags

?? ???? HTML? Area Tag? ?? ?? ?????. ?? ??? ??? ?? ???? ???? ???? ? ????? ??? ? ??? ?????? ??? ????? ?????. ?? ??? ???? ?? ?? ???? ???? ? ??? ???. ??? ???? ?? ?? ??? ??? ? ??? ?????.

??

?? ??? ??? ????.

<area alt="text" class=" " coords=" " shape> ;

???? ????? ?? ?? ?? ???? alt? ?????.

  • class:???? ??? ??? ?????.
  • coords: ??? ?? ? ??? ????.

??? ?? ??? ??? ????.

<img  src="/static/imghw/default1.png" data-src="edu.jpg" class="lazy" html name alt="HTML? ?? ??" >
<map name=" name">
<area shape="shapeName1" coords="x,y coordinates" href="html%20linkPath">
<area shape="shapeName2" coords=" x,y coordinates " href="htmllinkPath">
</map>

??: ?? ?? ??? ?? ? ????? XHTML? ?? ? ?????. ??? ? ?? ??? ?? ?? ???? ?? ?? ???? ??(?? ????? ???). ?? ??? ????? ??? ?????. ???? ?? ??? ????? ?? ?????. ?? ????? ??? ?? ?? ??? ???? ??? ???? ??? ? ???? ??? ????.

HTML?? ?? ??? ??? ??????

?? ???? ??? ??? ????. ???? ??? ?? ??????.

1. ???? ???? ????? ??? ?? ??? ??? ???? ???.

<img src="/static/imghw/default1.png" data-src="edu.jpg" class="lazy" alt="HTML? ?? ?? logo"> // image from the saved folder. Also, we can get from the web URL directly and map with <map> tag.</map>

??? ??? ???? ?? ? ?? ????? src ??? ?? ?????.

2. ??, #map ??? ???? ?? ??? ???. ? ??? ???? ?? ??? ? ?? '#' ??? ?? ?????(?? ?? =” #map”). Mapname? HTML? ?? ??? ??? ????? ???.

??? ?? ??? ????? ??? ?? ??? ?? ???? ???? ??? ?? ????. ????? ?? ?? ??? ??? ???(? ??)? ??? ??? ??? ?????.

3. ??? ??? ??? ?????.

<area shape="rect" cords='…….href=""?' alt="">
href comes with alt attribute by default.

??

????? HTML ???? ????? ????? ??? ???? ? ??? ?? ?? ??? ??? ????. ???? ???? ?? ??, ??? ?? ??, ??? ?? ? ? ?? ??? ????. ?? ??? ??? ??? ??? ??? ?? ?? ??? ???? HTML 5?? ? ?? ??? ??? ????.

1. ??? ??

?? ?? ??? ??????????????? ?
?? ??? ??? ???? ????? ?? ???? ?????.
ref ??? ??? ???? ?? ???? ?? ??? ??/URL? ?? ??? ?????. ??? ?????? ?????. document”
?? ????? ??? ??? ??? ?????. ”?

”?

?? ??? ? ??? ??? ?? ?? ?????. ??? ??? ?? ?????.

???: ??? ???? ????.

????: ??, ??, ???, ???

? : x, y, ??

Poly: x1,y1, x2,y2,x3,y3…

document”
target Specifies where to open the link page, or I can say the end target page. ”
Nohref Defines that absence of href. This means the area doesn’t have a link to next page
type Specifies the content type (MIME) ”Authors
hreflang Specifies language-type ”Second

2. Standard Attributes

The description of these attributes has already been discussed in the previous article.

  • Access key
  • class
  • dir
  • id
  • Style
  • lang
  • id
  • tab index
  • title.

3. Global Attributes

  • onmouse down
  • onmouse up
  • onmouse over
  • onmouse move
  • onmouse out
  • on focus
  • on blur
  • onkey press
  • onkey down
  • onkey up.

Examples to Implement Area Tags in HTML

Below are examples of implementing area tags in HTML:

Example #1

In the below example, I have created a jpg image diary.jpg. When u execute the code, the hand tool moves over the image at the specified cords; when you click on it, it directs you to the page rr.html.

Code:



<img  src="/static/imghw/default1.png" data-src="diary.jpg" class="lazy" html alt="HTML? ?? ??" >
<map name="Diary">
<area shape="rect" coords="94,91,189,193" href="rr.html">
</map>

Code: rr.html



hello

 Online tutorial Class

Output:

HTML? ?? ??

Example #2

Code:



<img class="logo lazy" src="/static/imghw/default1.png" data-src="edu.jpg" alt="HTML? ?? ?? logo"    style="max-width:90%"  style="max-width:90%" html>
<map name="ccmap">
<area shape="rect" coords="89,9,294,50" href="sha.html" alt="HTML? ?? ??">
<area shape="rect" coords="297,7,407,54" href="rr.html" alt="Welcome">
</map>

Code: rr.html



hello

 Online tutorial Class

Code: sha.html



hello

 Welcome to the Page

Output:

HTML? ?? ??

The Output below shows the logo of HTML? ?? ??; clicking the word BA directs to the page Hello page.

HTML? ?? ??

Example #3

Code:



<img src="/static/imghw/default1.png" data-src="new.png" class="lazy" alt="HTML? ?? ??" border="0" html>
<map name="Protocols">
<area shape="Poly" coords="74,0,113,29,98,72,52,72,38,27" href="https://www.manageengine.com/network-monitoring/what-is-snmp.html%22" alt="SNMP Tutorial" target="_blank">
<area shape="rect" coords="22,83,126,125" alt="FTP Tutorial" href="https://www.techtarget.com/searchnetworking/definition/File-Transfer-Protocol-FTP" target="_blank">
<area shape="circle" coords="73,168,32" alt="http Tutorial" href="https://www.webopedia.com/TERM/H/HTTP.html" target="_blank">
</map>

Explanation of the above program: In this example, we have created an image map using the image file called new.png, which has three clickable areas declared within it using the tag. The first clickable area is a polygonal shape that links to the SNMP page called www.managengine.com. The second clickable area is a rectangular shape that links to the FTP page called www.searchnetworking.com, and finally, the last clickable area is a circle that links to an HTTP page called www.webopedia.com.

Output:

HTML? ?? ??

Output:

HTML? ?? ??

Conclusion

Therefore, we have seen how the area tag is used in active areas in switching to the pages with brief information explaining how to use the tag in clickable areas with syntax and demo examples.

? ??? HTML? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

?? ????
1786
16
Cakephp ????
1729
56
??? ????
1581
29
PHP ????
1445
31
???
? ???? ???? ? ???? HTML ??? ?????? ? ???? ???? ? ???? HTML ??? ?????? Jul 03, 2025 am 02:34 AM

? ??? ??? Core HTML ???? ???????. 1. ???? ?? ??? ?? ??? ???? ??? ???? ?? ?? ? ?? ??? ?????. 2. ??? ??? ?? ?? ? SEO? ???? ?? ?? (-), ?? () ? ?? ?? (? :)? ?????. 3. ?????? ???? ????, ????? ???? ??? ???? ????? ?? Aria-Current ??? ???? ?????. 4. ?? ?? ???? ?? ??? ?? ? ?? ??? ?????. ??? ??? ???? ???? ??? ???, ?? ?? ? ?? ?? ???? ?? ? ? ????.

HTML5 ??-??? ???? ?? ?? ? ??? ?????. HTML5 ??-??? ???? ?? ?? ? ??? ?????. Jul 03, 2025 am 02:28 AM

HTML5SSE? ???? ?? ? ?? ? ??? ???? ???? ??? ?????. 1. ?? ? ?? ????? ??????. ??? ??? ????? ??? ?? ? ? 3 ? ?? ? ?????. ??? ??? ?? ??? ??? ?? ? ? ????. 2. ?? ???? ?? ?? ?? ?? ?? ?? ??? ???? ?? ??? ???? ?? ? ??? ???? ???? ??, ?? ?? ? ?? ?? ? ?? ?? TOKEN? ?? ?? ??? ?????. 3. ??? ???? ?? ????, ?? ??? ?? ?? ????, Navigator.online? ???? ??? ???? ?? ??? ????? ? ? ?? ??? ????? ??????. ??? ??? ?? ???? ???? ??? ??? ???? ? ????.

?? ???? ?? ??? HTML5 DocType? ?????. ?? ???? ?? ??? HTML5 DocType? ?????. Jul 03, 2025 am 02:35 AM

DocType? HTML ?? ????? ???? ?? ???? ? ???? ????? ???? ????. ?? ? ???? HTML ??? ?? ????? ???????. ? ??? ????? ??? ??? ?? ?? ??? ???? ????? ? ?? ?? ???????. ?? ?? ??? ??? ?? ??? ?? ???? ?? ??? ???? ?? ????. Charset, Viewport ?? ?? ?? ??? ????? ???????.

HTML ??? ???? ????? ? ?? ??? ?? ??. HTML ??? ???? ????? ? ?? ??? ?? ??. Jul 03, 2025 am 02:31 AM

htmlattributes.

HTML? ???? ?? ?? ?? ??? ??? ????? ??? ?????? HTML? ???? ?? ?? ?? ??? ??? ????? ??? ?????? Jul 04, 2025 am 03:16 AM

?? ?? ???? HTML?? ??? ?? ???? ??????. ???? ??? ?? ??? ???? ??? ?? ??? ??? ?? ?? ??? ???? ????. 1. ??, ???, ??? ?? ?? ??? ???? ????. 2. ??, ???? ?? ?? ??? ???? ????. 3. ?? ?? ???? ?? ? ??? ???? ?? ?????. ?? ??? ??? ?????. ? ?? ??? ??? ??? ?? ???? ? ? ????. style ???? ???? ??? CSS ?? ?? ?????? ?? ???????. Select2? ?? ????? ??? ????? ? ??? ? ????.

CSS ? JavaScript? HTML5 ??? ????? ?????. CSS ? JavaScript? HTML5 ??? ????? ?????. Jul 12, 2025 am 03:01 AM

HTML5, CSS ? JavaScript? ??? ??, ???? ?? ?? ? ???? ??? ????? ????????. 1. SEO ? ????? ???? ????? ??? ??? ? ?? ??? ??? ?? HTML5 ??? ??? ??????. 2. CSS? ???? ?? ??? ???? ???? ???? ??? ???? ????? ??? ?????. 3. JavaScript? ??? ???? ?? ???? DEFER ?? ASYNC? ???? ?? ???? ??? ?? ??? ????????. 4. ??? ??? ??? ???? ??? ??? ?? ? ??? ?? ?? ??? ?? ??? ???? ?? ?? ?? ??? ?? ?? ???? ??????. ??? ??? ??? ??? ????? ????? ?? ?? ? ? ????.

HTML ?? ??? ???? ?? ??? ?? ?? HTML ?? ??? ???? ?? ??? ?? ?? Jul 07, 2025 am 02:31 AM

HTML ?? ??? ???? ?? ??? ??? ???? ?? ?? ?? ? ???? ?? ??? ????????. 1. ????? ??? ??? ????? ?? ? ?? ?? (? : ??, ??, ???)? ?? ??? ?????. 2. JavaScript? ?? ?? ? ??? ???? ID? ?? ??? ?? ??? ??? ???? ?? ? ????. 3. CSS? ???? ???, ???, ?? ??? ? ??/?? ?? ??? ???? ???? ??? ???? ??? ??? ??????. 4. ???? ????????? : ???? ? ??? ????? ??? ???? JS ???? ???? ????? ???? ??? ???? ??? ??? ??? ???? ??? ?????. ??? ???????

??? html5 ??? (formdata)? ???? ?? ??? ?? ??? html5 ??? (formdata)? ???? ?? ??? ?? Jul 08, 2025 am 02:28 AM

HTML5? FormData API? ???? ?? ???? ???? ?? ? ?????. 1. ?? ????? ?? ??? ???? ????? ???? ???? ?? ? ? ????. 2. ?? ???? ??? Fetch ?? Xmlhttprequest? ?? ?? ??/?? ??? ??? ??? ???????. 3. ??? ?? ? ? ??? FormData? ???? ??? ??????. 4. ??? ?? ??? ?? ?? JSON ?? ? ?? ??? ?? ? ??? ????.

See all articles