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