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