html 标签
1.标题标签
是通过<h1>~<h6>来定义的。例如:
<h1>I'm a student</h1> <h2>I'm a boy</h2>
2.段落标签
是通过<p>标签进行定义的。例如:
<p>I'm a student I'm a boy</p> <p>We are family</p>
3.链接标签
有很多种链接方法,在这里只写了一种常用的<a>标签:
<a href="http://www.baidu.com.cn">百度</a>
在href中不仅可以写网址,它其实就是你要指定的链接地址。
4.图像标签
是通过<img>标签来进行定义的
<img src="baidu.jpg" />
当然还有不同的图像插入方法,代码写的也不一样
5.js标签
是通过script来进行定义的。
<script src=../js/baidu.js></script>
它可以写进<head>标签里,也可以写进<>标签里,但一般建议写进标签比较好。
6.表格标签
是通过<table>标签来进行定义的。
<table> <tr> <th> I'm a student! </th> </tr> </table>
<tr>表示的是行<th>表示的是该行每一列的元素的标签。
7.按钮标签
是通过<botton>和<input>的标签来定义的。
<button id="a">点击</button> <input id="a" value="点击" />
相关推荐
lupeng 2020-11-14
sjcheck 2020-11-10
sjcheck 2020-11-03
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
pythonclass 2020-07-29
sunzhihaofuture 2020-07-19
爱读书的旅行者 2020-07-07
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04
lyg0 2020-07-04
owhile 2020-07-04
opspider 2020-06-28
lengyu0 2020-06-28
tianqi 2020-06-21
dadaooxx 2020-06-16