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