33 lines
563 B
HTML
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> |