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