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