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