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