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