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