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