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