HTML2--form---frameset--imgmap

一:frame跟frameset不推荐使用,了解即可

二:imagemap

<img src="1.jpg" width="800" height="800" alt="不要捣乱" usemap="#maptext">

<map name="maptext">

<area shape="rect" coords="80,80,100,100" href="1.html"  alt="不要捣乱1">

<area shape="circle" coords="80,80,20" href="2.html" alt="不要捣乱2">

<area shape="circle" coords="100,100,20" href="3.html" alt="不要捣乱3">

</map> 

三: form标签:表单

下面为form内嵌标签:

input标签:属性:type,值:txt,password,hidden,submit,reset,button,image

textarea标签:

属性:placeholder,显示文本框的属性

原文地址:https://www.cnblogs.com/kaililikai/p/5780987.html