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