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