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