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