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