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