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