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