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