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