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