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