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