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