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