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