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