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