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