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