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