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