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