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