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