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