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