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