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