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