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