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