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