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