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