<html><head><style>/* 默认的 CSS 值 */h1 { display: block; font-size: 2em; margin-top: 0.67em; margin-bottom: 0.67em; margin-left: 0; margin-right: 0; font-weight: bold;}</style></head><body><p>默认情况下,h1 元素会这样显示:</p><h1>This is heading 1</h1><p>自定义的 h1 元素(更改 font-weight):</p><h1 style="font-weight:normal;">This is heading 1</h1></body></html>