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