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