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