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