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