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