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