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