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