html某些常用标签

来源:互联网 发布:python 量化视频教程 编辑:程序博客网 时间:2024/06/05 10:08

 

HTML 链接

HTML 链接是通过 <a>标签进行定义的。

<a href="http://www.baidu.com.cn">This is a link</a>

 

HTML 图像

HTML 图像是通过 <img>标签进行定义的。

<img src="w3school.jpg" width="104" height="142" />

HTML 水平线

<hr /> 标签在 HTML页面中创建水平线。

hr 元素可用于分隔内容。

缩写和首字母缩写:

<abbr title="UnitedNations">UN</abbr>

<br>

<acronym title="World WideWeb">WWW</acronym>

 

从右边到左输出

    <bdodir="rtl">

我爱你

十四是十四

四十是四十

</bdo>

 

删除和下划线文本:

<del>人民</del>

<ins>人民</ins>

HTML 样式实例 -文本对齐

text-align 属性规定了元素中文本的水平对齐方式:

<html>
 
<body>
<h1 style="text-align:center">This is a heading</h1>
<p>The heading above is aligned to the center of this page.</p>
</body>
 
</html>
0 0
原创粉丝点击