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