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