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