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