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