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