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