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