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