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