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