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