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