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