Use on the webTotal Use [ 5489 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/66eb35ade107def61be5a2aeea70dd69?family=Baskerville+Old+Face+DC+D" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/66eb35ade107def61be5a2aeea70dd69?family=Baskerville+Old+Face+DC+D);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Baskerville Old Face DC D";
src: url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.eot");
src: url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/66eb35ade107def61be5a2aeea70dd69.svg#Baskerville Old Face DC D")format("svg");
}
2CSS rules to specify fonts
font-family: "Baskerville Old Face DC D";