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