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