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