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