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