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