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