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