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