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