Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Addressing review comment
  • Loading branch information
litherum committed Oct 3, 2022
commit f8b9fba7384a0035cdeb3551b626be60b15226b0
12 changes: 6 additions & 6 deletions css-fonts-4/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,7 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
<pre>
@font-face {
font-family: BaskervilleSimple;
src: url(baskerville-regular.woff);
src: url(baskerville-regular.woff2);
}
</pre>

Expand All @@ -2741,12 +2741,12 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
<pre>
@font-face {
font-family: BaskervilleFull;
src: url(baskerville-regular.woff);
src: url(baskerville-regular.woff2);
}

@font-face {
font-family: BaskervilleFull;
src: url(baskerville-italic.woff);
src: url(baskerville-italic.woff2);
font-style: italic;
}
</pre>
Expand All @@ -2773,7 +2773,7 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
<pre>
@font-face {
font-family: Lastima;
src: url(lastima-varfont.woff);
src: url(lastima-varfont.woff2);
font-weight: 100 399;
}
</pre>
Expand All @@ -2787,12 +2787,12 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
<pre>
@font-face {
font-family: Lastima;
src: url(lastima-varfont-lightrange.woff);
src: url(lastima-varfont-lightrange.woff2);
font-weight: 100 399;
}
@font-face {
font-family: Lastima;
src: url(lastima-varfont-heavyrange.woff);
src: url(lastima-varfont-heavyrange.woff2);
font-weight: 400 700;
}
The above ''@font-face'' rules indicate that <code>lastima-varfont-lightrange.woff</code> should be used when
Expand Down