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