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