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