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