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