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