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