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