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