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