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