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