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