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