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