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