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