Home >Web Front-end >HTML Tutorial >HTML text formatting

HTML text formatting

不言
不言Original
2018-05-03 14:25:381428browse

This article mainly introduces HTML text formatting, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

HTML text formatting

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<b>加粗文本</b><br><br>
		<i>斜体文本</i><br><br>
		<code>电脑自动输出</code><br><br>
		这是<sub>下标</sub> 和 <sup>上标</sup>
	</body>
</html>

Example

##Text formatting

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<b>这个文本是加粗的</b>
		<br>
		<strong>这个文本是加粗的</strong>
		<br />
		<big>这个文本字体放大</big>
		<br />
		<em>这个文本是斜体的</em>
		<br />
		<i>斜体文本</i>
		<br />
		<small>这个文本是缩小的</small>
		<br />
		这个文本包含<sub>下标</sub> 和 <sup>上标</sup>
	</body>
</html>

Preformatted text

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<pre class="brush:php;toolbar:false">
			此例演示如何使用 pre 标签
			对空行和  空格
			进行控制
		

Computer output tag

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<code>计算机输出</code>
		<br />
		<kbd>键盘输入</kbd>
		<br />
		<tt>打字机文本</tt>
		<br />
		<samp>计算机代码样本</samp>
		<br />
		<var>计算机变量</var>
		<br />
		<p>
			<b>注释:</b>这些标签常用于显示计算机/编程代码
		</p>
	</body>
</html>

Address

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<address>
			Written by <a href="milto:webmaster@example.com">Jon Doe</a><br />
			Visit us at: <br />
			Example.com <br />
			Box 564, Disneyland <br />
			USA
		</address>
	</body>
</html>

Abbreviations and acronyms

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<abbr title="etcetera">etc.</abbr>
		<br />
		<acronym title="World Wide Web">WWW</acronym>
		<p>在某些浏览器中,当您把鼠标移至缩略词语上时,title 可用于展示表达的完整版本。</p>
		<p>仅对于 IE 5 中的 acronym 元素有效。</p>
		<p>对于 Netscape 6.2 中的 abbr 和 acronym 元素都有效。</p>
	</body>
</html>

Text direction

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<p>该段落文字从左到右显示。</p>
		<p>
			<bdo dir="rtl">该段落文字从右到左显示。</bdo>
		</p>
	</body>
</html>

Block quote

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<p> 
			WWF&#39;s goal is to:
			<q>Build a future where people live in harmony with nature.</q>
			We hope they succeed.
		</p>
	</body>
</html>

Delete word effect and insert word effect

<!DOCTYPE HTML>
<html>
	<meta charset="utf-8" />
	<head>
		<title>自选教程(如约智惠.com)</title>
	</head>
	<body>
		<p> 
			My favorite color is
			<del>bule</del>
			<ins>red</ins>
			!
		</p>
	</body>
</html>


##HTML text format tag

##a4b561c25d9afb9ac8dc4d70affff419Define bold text907fae80ddef53131f3292ee4f81644bDefinition of emphasized text5a8028ccc7a7e27417bff9f05adf5932Definition of italicized textd015d241ae6d34c34210679b5204fe85Definition of small characters##8e99a69fbe029cd4e2b854e244eab143b96cac025db4031319c29e1eb68f19d6##2cdea26b4c3988e37d674b56660962a7Define superscript426be984ffbbb815d7d88e3543a85d91Definition of insert wordDefinition of delete word
Tag Description
Definition of emphasis
Define subscript
##823db3943044a0a9a620ada8d4b1d965


HTML "Computer output" tag

##TagDescription##ffbe95d20f3893062224282accb13e8f5e4e803d53d659f332070b5d4aa430db162cd570ab1483e383d78dcb7f452f7cb7f90f73cad438258bf67e62f79b2113e03b848252eb9375d56be284e690e873


HTML citations, quotations, and tag definitions

Definition of computer code
Define keyboard code
Define computer code sample
Define variables
Define preformatted text
#8a7974376be5f6c00c121222b727adb9Definition of abbreviation208700f394e4cf40a7aa505373e0130bDefinition Address71af07a0e88a1ac1ff73f855702ac153Define text directionb8a712a75cab9a5aded02f74998372b4Define length Quotes1244aa79a84dea840d8e55c52dc97869Define short quotesf3a85e1241a187c5ac462d886e9a968bDefinition reference, citation7f9d788ef50b059a7f76f3d2e4ccc9d1Define a definition item.

related suggestion:

Knowledge summary of HTML text format

Detailed examples of HTML text formatting


The above is the detailed content of HTML text formatting. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn