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