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