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