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