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