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