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