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