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