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