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