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