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