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