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