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