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