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