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