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