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