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