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