html 网页结构
注释 <!-- -->
换行 <br/>
水平线 <hr/>
标题 <h1></h1>
段落 <p></p>
加粗 <strong></strong> <b></b>
倾斜 <em></em><i></i>
删除线 <del></del><s></s>
下划线<ins></ins><u></u>
上标<sup></sup>
下标 <sub></sub>
图片 <img src="" >
超链接 <a href=""></a>
无序列表 <ul><li></li></ul>
有序列表 <ol><li></li></ol>
自定义列表 <dl><dt><dd></dd></dt></dl>
嵌入内容 <embed src="" type="">
滚动 <marquee behavior="" direction=""></marquee>
编码 <meta charset="UTF-8">
关键字 <meta name="keywords" content="">
描述 <meta name="description" content="">
重定向 <meta http-equiv="refresh" content="">
链接样式文件 <link rel="stylesheet" href="">
icon图标 <link rel="icon" href="">
表格 <table><tr><td></td></tr></table>
表单 <form action=""></form>
文本框 <input type="text">
密码框 <input type="password">
单选框 <input type="radio">
下拉列表<select name="" id=""><optgroup label=""><option value=""></option></optgroup></option></select>
多选框 <input type="checkbox">
多行文本 <textarea name="" id="" cols="30" rows="10"></textarea>
上传 <input type="file">
提交 <input type="submit">
普通按钮 <input type="button">
图片按钮 <input type="image" src="">
重置按钮 <input type="reset">
表单分组 <fieldset><legend></legend></fieldset>