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