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