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