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