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