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