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