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