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