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