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