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