欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML-----样式(背景颜色,字体颜色,字体大小,各种各样的字体)

程序员文章站 2022-07-10 20:20:50
...
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>样式</title>
</head>
<body style="background-color:powderblue;">
	<h1 align="center">样式</h1>
	<!--标题居中排列-	<p style="font-family:verdana;color:red">verdana是字体</p>
	<p style="font-family:times;color:red">times是字体</p>
	<p style="font-size:30px">size是字体大小</p>
	<p style="font-family:times;color:red"><b>粗体</b>字体</p>
	<p style="font-family:times;color:red"><big>大号字</big>字体</p>
	<p style="font-family:times;color:red"><em>着重文字</em>字体</p>
	<p style="font-family:times;color:red"><i>斜体</i>字体</p>
	<p style="font-family:times;color:red"><small>小号字</small>字体</p>
	<p style="font-family:times;color:red"><strong>加重语气</strong>字体</p>
	<p style="font-family:times;color:red"><sub>定义下标字</sub>字体</p>
	<p style="font-family:times;color:red"><sup>定义上标字</sup>字体</p>
	<p style="font-family:times;color:red"><ins>定义插入字</ins>字体</p>
	<p style="font-family:times;color:red"><del>删除字</del>字体</p>
</body>
</html>

HTML-----样式(背景颜色,字体颜色,字体大小,各种各样的字体)HTML-----样式(背景颜色,字体颜色,字体大小,各种各样的字体)

相关标签: html