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