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