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