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