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