前端3+1(Day2)
html的元素有哪些(包括H5)
-
行内元素:
- <a></a> - <b></b>加粗 - <span></span> - <strong></strong>加粗 - <i></i>斜体 - <em></em>斜体 - <button></button>按钮 - <input></input>输入框 - <label></label> - <br></br> - <textarea></textarea>多行文本框 - <select><select>下拉列表
-
块级元素
- <div><div> - <p></p> - <h1></h1> - <ol></ol> - <ul></ul> - <li></li> - <table></table> - <tbody></tbody> - <thead></thead> - <dl></dl>定义列表 - <dt></dt> - <dd></dd>
-
H5新增:
- <section></section>表示文章中的节 - <article></article>表示定义独立内容(帖子,文章,故事,评论) - <audio control loop> <source src=""></source> </audio>表示音乐的播放 - <video> <source src=""></source> </video>表示视频的播放 - <header></header>定义文章的页眉,不是段落内容,所以不需要在目录显示 - <footer></footer> - <small></small>