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