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