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