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