font-family: Garamond, serif; what main
时间: 2024-05-19 21:14:59 浏览: 144
Sorry, I am not sure what you mean by "font-family: Garamond, serif; what main." Could you please rephrase your question or provide more context? I am here to help you with any questions you may have.
相关问题
@font-face { font-family: 'Stempel-Garamond-W01-Roman'; font-style: normal; font-weight: normal; src: url('../fonts/Stempel-Garamond-W01-Roman.woff') format('woff'); }
这段代码使用 `@font-face` 规则来定义一个自定义字体。
以下是代码的功能解释:
1. `font-family` 属性指定了字体的名称,这里为 'Stempel-Garamond-W01-Roman'。
2. `font-style` 属性指定了字体的样式,这里为普通样式(normal)。
3. `font-weight` 属性指定了字体的粗细,这里为普通粗细(normal)。
4. `src` 属性指定了字体文件的路径及格式,这里使用了相对路径 '../fonts/Stempel-Garamond-W01-Roman.woff' 并且指定了字体文件的格式为 WOFF(woff)。
这段代码的作用是定义一个名为 'Stempel-Garamond-W01-Roman' 的自定义字体,并将字体文件与之关联。该字体文件位于相对于当前样式表的 '../fonts' 目录中,文件格式为 WOFF。通过使用 `@font-face` 规则,可以在网页中使用该自定义字体。
font-family有哪些
常用的字体族名(font-family)有:
1. Arial
2. Helvetica
3. Times New Roman
4. Times
5. Courier New
6. Courier
7. Verdana
8. Georgia
9. Palatino
10. Garamond
11. Bookman
12. Comic Sans MS
13. Trebuchet MS
14. Impact
15. Andale Mono
阅读全文