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