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