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