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