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