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