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