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