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