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