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