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