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