style 链接 (页面设计)

<span style="font-size:18px;">很久没来了,那今天就先来点同   <style> 链接的吧</span>
<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	h1{
		color:blue;
	}
	h2{
		font-size: 12px;
	}
	p{
		text-indent: 2em;
		color: #259;
		font-style: italic;
	}
	</style>
</head>
<body>
	<h1>蓝色啦</h1>
	<p>首行缩进2字符</p>
	<p>发现有什么不同了吗</p>
	<h2>本来二级标题会有那么小吗</h2>
</body>
</html>

效果图:

style 链接 (页面设计)_第1张图片

你可能感兴趣的:(style 链接 (页面设计))