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