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