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