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