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