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