font-size字号大小.html 603 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .p {
  9. font-size:20px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h2 class="">pink的秘密</h2>
  15. <p>那一抹众人中最漂亮的颜色,</p>
  16. <p>优雅,淡然,又那么心中清澈.</p>
  17. <p>前端总是伴随着困难和犯错,</p>
  18. <p>静心,坦然,攻克一个又一个.</p>
  19. <p>拼死也要克服它,</p>
  20. <p>这是pink的秘密也是老师最终的嘱托.</p>
  21. </body>
  22. </html>