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