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