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