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