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