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