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