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