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