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