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