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