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