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