12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- /*
- 浏览器默认(根)字体大小16px
- 浏览器最小: 12px
- */
- p {
- /* 字体大小 */
- font-size: 30px;
- /* 字体粗细:
- 粗: bold bolder 600-900
- 正常:normal 400 500
- 细: lighter 100-300
- */
- font-weight: bold;
- /*
- 字体样式
- italic 倾斜
- normal 正常
- */
- font-style: italic;
- /* 字体 */
- font-family: 'Courier New', Courier, monospace;
- }
- </style>
- </head>
- <body>
- <div>
- <p>今天天气真好</p>
- </div>
- </body>
- </html>
|