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