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