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