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