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