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