- HTML tags and element concept differences
<p> is the label,<p> content </p> is an HTML element.
- <pre></pre> defines pre-formatted text, which is used to display the source code.
- <map> and <area> set up image mapping
<map name= "Planetmap" id= "Planetmap" The <area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" /> <area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" /> <area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" /> "Usemap" attribute in the > </map>img element references the "id" or "name" attribute in the Map element (depending on the browser), so we have added "I" to the map element at the same time. The D "and" name "properties.
- <ol> ordered list,<ul> unordered lists, with <li></li> inside. <dl> a list of definitions.
The Type property in <input> has text text box, password Password box, radio single box, checkbox multi Box, submit submit box, reset table Reset Box
March 31 Study Notes (HTML section)