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