Use on the webTotal Use [ 5322 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/26df0160e9adc9f2d09a6b9d9e5e6abd?family=BaskervilleMTStd-Regular" 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/26df0160e9adc9f2d09a6b9d9e5e6abd?family=BaskervilleMTStd-Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "BaskervilleMTStd-Regular";
src: url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.eot");
src: url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/26df0160e9adc9f2d09a6b9d9e5e6abd.svg#BaskervilleMTStd-Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "BaskervilleMTStd-Regular";