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