HTML 文本
作者:互联网
html 文本格式化
1.文本格式化:如何在一个 HTML 文件中对文本进行格式化
<b>这个文本是加粗的</b>
<strong>这个文本是加粗的</strong>
<big>这个文本字体放大</big>
<em>这个文本是斜体的</em>
<i>这个文本是斜体的</i>
<small>这个文本是缩小的</small>
这个文本包含<sub>下标</sub>
这个文本包含<sup>上标</sup>
2.预格式文本:如何使用 pre 标签对空行和空格进行控制。
<pre>
此例演示如何使用 pre 标签
对空行和 空格
进行控制
</pre>
3.地址
①链接跳转
<a href="mailto:webmaster@example.com">Jon Doe</a> //邮箱地址
<a href="https://www.baidu.com" target="_blank">百度</a> //网页地址,打开新的窗口
<a href="https://www.baidu.com" target="_self">百度</a> //网页地址,打开本身窗口
<a href="http://www.runoob.com/" target="_top">跳出框架</a>
<a href=" javascript:alert('a') ">弹窗</a> //放js代码
<a href=" javascript:; ">点击不发生跳转</a>
<a href=" # ">顶部</a> //回到首页顶部
<a href="../note/1.zip ">下载</a> // href后面是相对路径,点击会打开或下载对应的文件
<a href="../img/1.jpg ">打开</a>
②锚链接
同一页面跳转: <a href="../img/1.jpg" id="hreo"></a>
<a href="#hreo ">上面的图</a>
不同页面跳转:img.html中的<a href="../img/1.jpg" id="hreo">打开</a>
<a href="img.html#hreo">打开</a>
4.缩写和首字母缩写
<abbr title="etcetera">etc</abbr> //缩写,鼠标移入显示:etcetera
<acronym title="Acronym World Wide Web">AWWW</acronym> //首字母缩写,鼠标移入显示:Acronym World Wide Web
5.文字方向:如何改变文字的方向
<p>该段落文字从左到右显示。</p>
<p><bdo dir="rtl">该段落文字从右到左显示。</bdo></p>
6.块引用:如何实现长短不一的引用语
①短引用
<p>WWF's goal is to:
<q>Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>
②长引用
<h1>About WWF</h1>
<p>Here is a quote from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html"> // cite 引用地址
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>
7.删除文本和插入文本
<p> 如何<del>删除文本</del>,<ins>插入文本</ins>!</p>
标签:缩写,文本,HTML,WWF,引用,跳转,打开 来源: https://www.cnblogs.com/fei-ye/p/16437497.html