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