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