HTML (Hyper Text Markup Language) (超文本标记语言)
<html> <head> <title></title> <meta name="keywords" content=""> <meta name="description" content=""> </head> <body> </body> </html>
<!--注释-->
<h1>、<h2>、<h3>、<h4>、<h5>、<h6> 搜索引擎使用标题为网页结构和内容编制索引 用户通过标题来快速了解网页 <p> <br/> <hr/>
<strong> <b>、<i> <sup>、<sub> <del>、<ins>
<div> 区块元素 <span> 内联元素
<a href="" target="_blank"、"framename"></a>
<img src="" width="" height="" border=""/>
<table border="1" style="border-collapse:collapse;"> <caption></caption> <tr> <th rowspan="" colspan=""></th> </tr> <tr> <td rowspan="" colspan=""></td> </tr> </table>
无序<ul><li></li></ul> 有序<ol><li></li></ol> 自定义<dl><dt></dt><dd></dd></dl>
框架<iframe name="" src="" width="" height="" frameborder="no" scrolling="no"></iframe>
<textarea></textarea> name="" form="form_id" 所属表单 autofocus 加载完成时获得焦点 placeholder="" 提示 maxlength="" 最大字符数 cols="" 显示列 rows="" 显示行 required 必填 readonly 只读 disabled 禁用 wrap= "hard" 提交时不包括换行符 "soft" 提交时包括换行符
<select> <option selected disabled label="显示值" value="服务器接收值"></option> </select> name="" form="form_id" autofocus multiple="true"、"false" required disabled size=""
<input type="text" list="dlist" /> <datalist id="dlist"> <option value="Internet Explorer"> <option value="Firefox"> <option value="Chrome"> <option value="Opera"> <option value="Safari"> </datalist>
<form></form> id="" name="" actino="" method="get"、"post" target="_blank" autocomplete="on"、"off" enctype= application/x-www-form-urlencoded (默认,对所有字符进行编码,将空格转换为"+",特殊字符转换为ASCII HEX) multipart/form-data (不对字符编码,当使用文件上传的表单时,该值是必需的) text/plain (将空格转换为"+",但不编码特殊字符)
<input/> name="" form、formaction、formethod、formtarget、formenctype (当type="submit"、"image") autocomplete="on"、"off" placeholder="" maxlength="" size="" required readonly disabled value="" pattern="正则" type= password text(tel、email、search、url)
radio (checked) checkbox(checked)
file(accept="audio"、"video"、"image"、"*MIME_type")
reset submit image(width、height、src)
button type=button、reset、submit
hidden
number(max、min、step) range(max、min、step)
date time color

免费 AI IDE



