html learning -02

Cipian mainly attribute to set the background color: backgroud-color, font-family, text-align.

<html>
	<body style="background-color: green">
		<meta charset="utf-8">
		<h1 style="background-color: white">这背景颜色是白色</h1>
		<p style="background-color: red">这背景颜色是红色</p>
		<h2 style="font-family: verdana">字体为verdana</h2>
		<p style="font-family: arial;color: red;font-size: 20px;">字体为arial,颜色为红色,字体大小为20px</p>
		<p style="text-align: center">此段文字居中</p>
	</body>
</html>
Released seven original articles · won praise 0 · Views 218

Guess you like

Origin blog.csdn.net/qq_37961252/article/details/80115232