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