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