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