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