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