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