font.html 786 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>活力办公,创意无限</title>
  6. <style type="text/css">
  7. *{ margin: 0; padding: 0; }
  8. @font-face {
  9. font-family: 'o2font';
  10. src: url('./font/font.eot');
  11. src:
  12. url('./font/font.eot?#font-spider') format('embedded-opentype'),
  13. url('./font/font.woff') format('woff'),
  14. url('./font/font.svg') format('svg');
  15. font-weight: normal;
  16. font-style: normal;
  17. }
  18. h1{
  19. font-family: "o2font",sans-serif;
  20. text-align: center;
  21. line-height: 300px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <h1>活力办公,创意无限</h1>
  27. </body>
  28. </html>