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