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