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