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