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