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