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