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