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