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