虽不会咬定青山不放松,但事必有始有终

做测试的你也该知道-3分钟速看html基础用法

上一篇 / 下一篇  2018-11-18 17:26:24 / 个人分类:web前端

html:告诉浏览器如何显示一些内容(编排内容)

0.换行

<br>

1.标题

<h1>  </h1>

<h2>  </h2>

2.分割线

<hr/>

3.文字段落

<p>    </p>

4.斜体字

<i>    </i>

5.粗体字

<b>    </b>

6.下划线字

<u>  </u>

7.图片

<img src="http://zfsadfsfdsfsdfsdf">

8.无序列表

<ul>

<li>这是无序列表1</li>

<li>这是无序列表2</li>

</ul>

9.有序列表

<ol>

<li>这是有序列表1</li>

<li>这是有序列表2</li>

</ol>

10.表格

<table border="1">

<tr>

<td>表格第一行,第一列</td>

<td>表格第一行,第二列</td>

</tr>

<tr>

<td>表格第二行,第一列</td>

<td>表格第二行,第二列</td>

</tr>

</table>

注:border是边框的意思,可加可不加

      参数"1"是设置表格边框的粗细

11.视频

<video width="200" height="200" src="http://xxxxxxxxx.mp4" controls>我的视频</video>

12.链接

<a href="http://www.baidu.com">百度一下你就知道</a>

13.html完整结构

<!DOCTYPE html>

<html>

<head>

<meta. charset="UTF-8">

<title>欢迎来到云小极的主页</title>

</head>

<body>

xxx

xxx

xxx

xxx

</body>

</html>


TAG:

 

评分:0

我来说两句

日历

« 2024-04-18  
 123456
78910111213
14151617181920
21222324252627
282930    

数据统计

  • 访问量: 3854
  • 日志数: 4
  • 建立时间: 2018-04-09
  • 更新时间: 2018-11-18

RSS订阅

Open Toolbar