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