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