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