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