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