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