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