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