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