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