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