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