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