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