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