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