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