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