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