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