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