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