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