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