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