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