<!DOCTYPE html>
<html>
<head>
<title>W3.CSS(w3cschool.cn)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" href="https://7npmedia.w3cschool.cn/w3.css">
</head>
<body>
<div class="w3-container">
<h2>特殊效果</h2>
<div class="w3-panel w3-pink">
<h1 class="w3-opacity">
<b>文字不透明度+粗体</b></h1>
</div>
<div class="w3-panel w3-amber">
<h1 class="w3-text-yellow" style="text-shadow:1px 1px 0 #444">
<b>黄色文字+阴影+粗体</b></h1>
</div>
<div class="w3-panel w3-blue">
<h1 class="w3-text-orange" style="text-shadow:1px 1px 0 #444">
<b>橙色文字+阴影+粗体</b></h1>
</div>
</div>
</body>
</html>