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