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