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