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