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