<!DOCTYPE html>
<html>
<head>
<style>
p.center {
text-align: center;
color: red;
}
</style>
</head>
<body>
<h1 class="center">此标题不会受到影响</h1>
<p class="center">这个段落将是红色的并且居中对齐。</p>
</body>
</html>