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