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