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