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