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