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