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