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