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