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