Files
ClassContent/历届学生/熊坤/2019-03-12/css属性练习.html
2024-09-27 02:06:13 +08:00

33 lines
563 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
p {
font-size: 29px;
font-family: fantasy;
font-weight: bolder;
color: #ff0;
opacity: 0.5;
}
h3 {
text-align: center;
}
</style>
</head>
<body>
<p>font属性练习</p>
<p>hahahahahahhaahhahah</p>
<h3>这是测试文字的text-align对齐方式</h3>
</body>
</html>