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