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