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