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