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