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