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