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