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