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